database structure

This commit is contained in:
2018-08-06 10:29:46 -04:00
parent da3a80e3fc
commit 611e61981d
+8
View File
@@ -0,0 +1,8 @@
CREATE TABLE `urls` (
`url` varchar(64) NOT NULL DEFAULT '/',
`uid` int(11) DEFAULT '0',
`gid` int(11) DEFAULT '0',
`perms` int(11) DEFAULT '0',
PRIMARY KEY (`url`),
UNIQUE KEY `url_UNIQUE` (`url`)
)