Moving to GitHub.
[platal.git] / upgrade / account / 04_emails.sql
1 drop table if exists email_options;
2 create table email_options (
3 uid int(6) not null,
4 storage set('imap', 'googleapps') not null default '',
5
6 primary key uid (uid)
7 ) ENGINE=InnoDB, CHARSET=utf8;
8
9 # vim:set syntax=mysql: