Add SQL table creation scripts.
[arachne.git] / sql / Pages.sql
1 CREATE TABLE `Pages` (
2   `ID` bigint(20) NOT NULL auto_increment,
3   `Site` bigint(20) NOT NULL,
4   `Path` text NOT NULL,
5   `LastUpdated` bigint(20) NOT NULL,
6   PRIMARY KEY  (`ID`)
7 )