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)
+);