This repository was archived by the owner on Oct 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -280,19 +280,19 @@ static function install(Migration $migration) {
280
280
}
281
281
282
282
if (!$ DB ->fieldExists ($ table , 'solutiontypes_id ' )) {
283
- $ migration ->addField ($ table , "solutiontypes_id " , "INT( 11 ) NOT NULL DEFAULT 0 " );
283
+ $ migration ->addField ($ table , "solutiontypes_id " , "INT NOT NULL DEFAULT 0 " );
284
284
}
285
285
286
286
if (!$ DB ->fieldExists ($ table , 'users_id ' )) {
287
- $ migration ->addField ($ table , "users_id " , "INT( 11 ) NOT NULL DEFAULT 0 " );
287
+ $ migration ->addField ($ table , "users_id " , "INT NOT NULL DEFAULT 0 " );
288
288
}
289
289
290
290
if (!$ DB ->fieldExists ($ table , 'check_ssl ' )) {
291
- $ migration ->addField ($ table , "check_ssl " , "INT( 1 ) NOT NULL DEFAULT 0 " );
291
+ $ migration ->addField ($ table , "check_ssl " , "INT NOT NULL DEFAULT 0 " );
292
292
}
293
293
294
294
if (!$ DB ->fieldExists ($ table , 'use_proxy ' )) {
295
- $ migration ->addField ($ table , "use_proxy " , "INT( 1 ) NOT NULL DEFAULT 0 " );
295
+ $ migration ->addField ($ table , "use_proxy " , "INT NOT NULL DEFAULT 0 " );
296
296
}
297
297
298
298
if (!$ DB ->fieldExists ($ table , 'is_password_sodium_encrypted ' )) {
You can’t perform that action at this time.
0 commit comments