Release of plat/al 1.1.13
[platal.git] / upgrade / account / 04_emails.sql
CommitLineData
d0293d9b 1drop table if exists email_options;
58a4e6bb
FB
2create table email_options (
3 uid int(6) not null,
4 storage set('imap', 'googleapps') not null default '',
5
6 primary key uid (uid)
950bf4f6 7) ENGINE=InnoDB, CHARSET=utf8;
58a4e6bb
FB
8
9# vim:set syntax=mysql: