Prepare db migration.
[platal.git] / upgrade / account / 04_emails.sql
1 create table email_options (
2 uid int(6) not null,
3 storage set('imap', 'googleapps') not null default '',
4
5 primary key uid (uid)
6 );
7
8 # vim:set syntax=mysql: