new subscriptions table
This commit is contained in:
parent
08bfa7c5e3
commit
bfe5863d99
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue