xref: /plugin/struct/db/update0006.sql (revision ed60c3b35483367298781f7b408d38ff6458040d)
1DROP TABLE schema_assignments;
2-- this table now will hold information about all pages that ever had a schema assigned
3-- which is basically the same as all pages that ever had struct data saved
4CREATE TABLE schema_assignments (
5    pid NOT NULL,
6    tbl NOT NULL,
7    assigned BOOLEAN NOT NULL DEFAULT 1,
8    PRIMARY KEY(pid, tbl)
9);
10