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

Commit a409087

Browse files
committed
Remove deprecated usage of integer display width
1 parent 45dcd94 commit a409087

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
@@ -275,19 +275,19 @@ static function install(Migration $migration) {
275275
}
276276

277277
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");
279279
}
280280

281281
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");
283283
}
284284

285285
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");
287287
}
288288

289289
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");
291291
}
292292

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

0 commit comments

Comments
 (0)