wiki.techinc.nl/maintenance/postgres/archives/patch-content-table.sql
daniel 943c724198 MCR database schema
Schema additions/updates for MySQL, SQLite, PostgreSQL, MSSQL
and Oracle to add new tables:

* content
* content_models
* slots
* slot_roles

See also https://www.mediawiki.org/wiki/Multi-Content_Revisions/Database_Schema

Bug: T174028
Change-Id: I30a3a9834d54d0e6957553d91908b2b73b2c802f
2017-12-23 17:43:09 -05:00

8 lines
309 B
SQL

CREATE SEQUENCE content_content_id_seq;
CREATE TABLE content (
content_id INTEGER NOT NULL PRIMARY KEY DEFAULT nextval('content_content_id_seq'),
content_size INTEGER NOT NULL,
content_sha1 TEXT NOT NULL,
content_model SMALLINT NOT NULL,
content_address TEXT NOT NULL
);