Start porting carnet to UserFilter.
[platal.git] / upgrade / account / 03_carnet.sql
1 create table watch (
2 uid int(6) not null,
3 flags set('contacts', 'mail') not null default 'contacts',
4 actions set('profile', 'registration', 'death', 'birthday') not null default '',
5 last timestamp not null default '0000-00-00',
6
7 primary key uid (uid),
8 key flags (flags)
9 );
10
11 # vim:set syntax=mysql: