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 @@ -275,19 +275,19 @@ static function install(Migration $migration) {
275
275
}
276
276
277
277
if (!$ DB ->fieldExists ($ table , 'solutiontypes_id ' )) {
278
- $ migration ->addField ($ table , "solutiontypes_id " , "INT( 11 ) NOT NULL DEFAULT 0 " );
278
+ $ migration ->addField ($ table , "solutiontypes_id " , "INT NOT NULL DEFAULT 0 " );
279
279
}
280
280
281
281
if (!$ DB ->fieldExists ($ table , 'users_id ' )) {
282
- $ migration ->addField ($ table , "users_id " , "INT( 11 ) NOT NULL DEFAULT 0 " );
282
+ $ migration ->addField ($ table , "users_id " , "INT NOT NULL DEFAULT 0 " );
283
283
}
284
284
285
285
if (!$ DB ->fieldExists ($ table , 'check_ssl ' )) {
286
- $ migration ->addField ($ table , "check_ssl " , "INT( 1 ) NOT NULL DEFAULT 0 " );
286
+ $ migration ->addField ($ table , "check_ssl " , "INT NOT NULL DEFAULT 0 " );
287
287
}
288
288
289
289
if (!$ DB ->fieldExists ($ table , 'use_proxy ' )) {
290
- $ migration ->addField ($ table , "use_proxy " , "INT( 1 ) NOT NULL DEFAULT 0 " );
290
+ $ migration ->addField ($ table , "use_proxy " , "INT NOT NULL DEFAULT 0 " );
291
291
}
292
292
293
293
if (!$ DB ->fieldExists ($ table , 'is_password_sodium_encrypted ' )) {
You can’t perform that action at this time.
0 commit comments