X-Git-Url: https://git.pterodactylus.net/?p=arachne.git;a=blobdiff_plain;f=sql%2FSites.sql;fp=sql%2FSites.sql;h=a3e4c37d48f5891810271517b9eab8fcbd699509;hp=0000000000000000000000000000000000000000;hb=5cad9383aef2bdc2e1555db1161f43a45013d9ef;hpb=a637923e6ea2bd6d53180b7e843b02a191b6d6e5 diff --git a/sql/Sites.sql b/sql/Sites.sql new file mode 100644 index 0000000..a3e4c37 --- /dev/null +++ b/sql/Sites.sql @@ -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`) +)