Add filter on contacts, fix $globals->asso() on X.org.
[platal.git] / upgrade / account / 03_carnet.sql
CommitLineData
0511895d 1create table watch (
c1e98576 2 uid int(6) not null,
0511895d
FB
3 flags set('contacts', 'mail') not null default 'contacts',
4 last timestamp not null default '0000-00-00',
5
6 primary key uid (uid),
7 key flags (flags)
8);
9
10# vim:set syntax=mysql: