Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit ac3ab5a

Browse files
committed
Remove deprecated usage of integer display width
1 parent 19a819f commit ac3ab5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

inc/config.class.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,19 +280,19 @@ static function install(Migration $migration) {
280280
}
281281

282282
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");
284284
}
285285

286286
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");
288288
}
289289

290290
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");
292292
}
293293

294294
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");
296296
}
297297

298298
if (!$DB->fieldExists($table, 'is_password_sodium_encrypted')) {

0 commit comments

Comments
 (0)