This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
-- Up
|
|
|
|
CREATE TABLE inclusive (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
insteadOf TEXT NOT NULL,
|
|
say TEXT NOT NULL,
|
|
because TEXT NOT NULL,
|
|
locale TEXT NOT NULL,
|
|
approved INTEGER NOT NULL,
|
|
base_id TEXT
|
|
);
|
|
|
|
-- Down
|
|
|
|
DROP TABLE inclusive;
|