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

Commit 69aefd9

Browse files
committed
Force database dynamic row format
1 parent fe37e57 commit 69aefd9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

inc/config.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ static function install(Migration $migration) {
263263
`use_proxy` int NOT NULL DEFAULT 0,
264264
`is_password_sodium_encrypted` int NOT NULL DEFAULT 1,
265265
PRIMARY KEY (`id`)
266-
) ENGINE=InnoDB DEFAULT CHARSET={$default_charset} COLLATE={$default_collation};";
266+
) ENGINE=InnoDB DEFAULT CHARSET={$default_charset} COLLATE={$default_collation} ROW_FORMAT=DYNAMIC;";
267267
$DB->query($query) or die($DB->error());
268268

269269
$query = "INSERT INTO `$table` (id) VALUES (1)";

inc/mantis.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static function install(Migration $migration) {
113113
`itemtype` varchar(255) NOT NULL,
114114
`user` int NOT NULL,
115115
PRIMARY KEY (`id`)
116-
) ENGINE=InnoDB DEFAULT CHARSET={$default_charset} COLLATE={$default_collation};";
116+
) ENGINE=InnoDB DEFAULT CHARSET={$default_charset} COLLATE={$default_collation} ROW_FORMAT=DYNAMIC;";
117117
$DB->query($query) or die($DB->error());
118118

119119
} else {

0 commit comments

Comments
 (0)