aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/firebird_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/firebird_schema.sql')
-rw-r--r--phpBB/install/schemas/firebird_schema.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/schemas/firebird_schema.sql b/phpBB/install/schemas/firebird_schema.sql
index 99b1a7667e..0e1c82d18b 100644
--- a/phpBB/install/schemas/firebird_schema.sql
+++ b/phpBB/install/schemas/firebird_schema.sql
@@ -131,6 +131,14 @@ CREATE TRIGGER phpbb_banlist_trig
NEW.ban_id = GEN_ID(phpbb_banlist_gen, 1)|
END;
+# Table: 'phpbb_cache'
+CREATE TABLE phpbb_cache (
+ var_name VARCHAR(255) NOT NULL,
+ var_ts INTEGER DEFAULT 0 NOT NULL,
+ var_data TEXT DEFAULT '' NOT NULL,
+ PRIMARY KEY (var_name)
+);
+
# Table: 'phpbb_config'
CREATE TABLE phpbb_config (
config_name VARCHAR(50) NOT NULL,