Add SQL table creation scripts.
[arachne.git] / sql / Pages.sql
diff --git a/sql/Pages.sql b/sql/Pages.sql
new file mode 100644 (file)
index 0000000..7196901
--- /dev/null
@@ -0,0 +1,7 @@
+CREATE TABLE `Pages` (
+  `ID` bigint(20) NOT NULL auto_increment,
+  `Site` bigint(20) NOT NULL,
+  `Path` text NOT NULL,
+  `LastUpdated` bigint(20) NOT NULL,
+  PRIMARY KEY  (`ID`)
+)