diff options
Diffstat (limited to 'phpBB/install/schemas/firebird_schema.sql')
-rw-r--r-- | phpBB/install/schemas/firebird_schema.sql | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/install/schemas/firebird_schema.sql b/phpBB/install/schemas/firebird_schema.sql index 4090469598..99b1a7667e 100644 --- a/phpBB/install/schemas/firebird_schema.sql +++ b/phpBB/install/schemas/firebird_schema.sql @@ -397,7 +397,7 @@ CREATE TRIGGER phpbb_log_moderator_trig # Table: 'phpbb_log_admin' CREATE TABLE phpbb_log_admin ( - log_id INTEGER DEFAULT 0 NOT NULL, + log_id INTEGER NOT NULL, user_id INTEGER DEFAULT 0 NOT NULL, log_ip VARCHAR(40) NOT NULL, log_time INTEGER NOT NULL, @@ -771,7 +771,8 @@ CREATE TABLE phpbb_styles_imageset ( icon_post_newest CHAR(200) DEFAULT '' NOT NULL, forum CHAR(200) DEFAULT '' NOT NULL, forum_new CHAR(200) DEFAULT '' NOT NULL, - forum_locked CHAR(200) DEFAULT '' NOT NULL, + forum_locked CHAR(200) DEFAULT '' NOT NULL, + forum_link CHAR(200) DEFAULT '' NOT NULL, sub_forum CHAR(200) DEFAULT '' NOT NULL, sub_forum_new CHAR(200) DEFAULT '' NOT NULL, folder CHAR(200) DEFAULT '' NOT NULL, |