707fe011f261341915419919315b05786ae4ae0a
[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 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: