new subscriptions table

This commit is contained in:
Ryan Walberg 2012-12-11 22:49:51 +00:00
parent 08bfa7c5e3
commit bfe5863d99

View file

@ -170,3 +170,10 @@ CREATE TABLE memberships (
familyid int(11) NOT NULL default '0',
PRIMARY KEY (userid,familyid)
) TYPE=MyISAM;
CREATE TABLE `subscriptions` (
`publisher` int(11) NOT NULL,
`subscriber` int(11) NOT NULL,
`last_notified` datetime DEFAULT NULL,
PRIMARY KEY (`publisher`,`subscriber`)
) TYPE=MyISAM;