aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/postgres/tables-generated.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/postgres/tables-generated.sql')
-rw-r--r--maintenance/postgres/tables-generated.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/maintenance/postgres/tables-generated.sql b/maintenance/postgres/tables-generated.sql
index f74464a05dae..64ca9ac6af10 100644
--- a/maintenance/postgres/tables-generated.sql
+++ b/maintenance/postgres/tables-generated.sql
@@ -686,3 +686,11 @@ CREATE INDEX fa_deleted_timestamp ON filearchive (fa_deleted_timestamp);
CREATE INDEX fa_actor_timestamp ON filearchive (fa_actor, fa_timestamp);
CREATE INDEX fa_sha1 ON filearchive (fa_sha1);
+
+
+CREATE TABLE text (
+ old_id SERIAL NOT NULL,
+ old_text TEXT NOT NULL,
+ old_flags TEXT NOT NULL,
+ PRIMARY KEY(old_id)
+);