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.
Zaimki/migrations/012-terms.sql

18 lines
331 B
SQL

-- Up
CREATE TABLE terms (
id TEXT NOT NULL PRIMARY KEY,
term TEXT NOT NULL,
original TEXT NULL,
definition TEXT NOT NULL,
locale TEXT NOT NULL,
approved INTEGER NOT NULL,
base_id TEXT,
author_id TEXT NULL REFERENCES users(id),
deleted INTEGER NOT NULL DEFAULT 0
);
-- Down
DROP TABLE terms;