Empty commit

This commit is contained in:
Git 2012-07-27 08:00:10 +00:00
parent b8ec5cf302
commit 7421c55040

View File

@ -800,6 +800,12 @@ CREATE TABLE `stylesheets` (
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE `subscribed_forums` (
`ForumID` int(10) NOT NULL,
`SubscriberID` int(10) NOT NULL,
PRIMARY KEY (`ForumID`,`SubscriberID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
CREATE TABLE `subscribed_users` (
`UserID` int(10) NOT NULL,
`SubscriberID` int(10) NOT NULL,