Add SQL table creation scripts.
[arachne.git] / sql / Sites.sql
diff --git a/sql/Sites.sql b/sql/Sites.sql
new file mode 100644 (file)
index 0000000..a3e4c37
--- /dev/null
@@ -0,0 +1,7 @@
+CREATE TABLE `Sites` (
+  `ID` bigint(20) NOT NULL auto_increment,
+  `Key` char(95) NOT NULL,
+  `Name` text NOT NULL,
+  `Edition` int(11) NOT NULL,
+  PRIMARY KEY  (`ID`)
+)