commit | 83f8f296bf649fbde6ae07edfcb7acc47b5de91d | [log] [tgz] |
---|---|---|
author | avm99963 <me@avm99963.com> | Tue Aug 24 18:26:52 2021 +0200 |
committer | avm99963 <me@avm99963.com> | Tue Aug 24 18:34:51 2021 +0200 |
tree | 45f76492841d398bd034311a4e4bbe1fe999cfe5 | |
parent | e71c2a3d91b19bf9ca1a767e187396a553bc8f2d [diff] [blame] |
First prototype Change-Id: Ieceb55636bda133466609471f25508d0ae83c52c
diff --git a/schema/common.sql b/schema/common.sql new file mode 100644 index 0000000..c74d7e5 --- /dev/null +++ b/schema/common.sql
@@ -0,0 +1,8 @@ +CREATE TABLE Feature ( + feat_id SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, + codename VARCHAR(80) NOT NULL, + feat_type SMALLINT NOT NULL, + + PRIMARY KEY (feat_id), + UNIQUE KEY (codename) +);