Add SQL table creation scripts.
[arachne.git] / sql / Sites.sql
1 CREATE TABLE `Sites` (
2   `ID` bigint(20) NOT NULL auto_increment,
3   `Key` char(95) NOT NULL,
4   `Name` text NOT NULL,
5   `Edition` int(11) NOT NULL,
6   PRIMARY KEY  (`ID`)
7 )