Update import scripts: create table using InnoDB engine.
[platal.git] / upgrade / account / 04_emails.sql
CommitLineData
58a4e6bb
FB
1create table email_options (
2 uid int(6) not null,
3 storage set('imap', 'googleapps') not null default '',
4
5 primary key uid (uid)
950bf4f6 6) ENGINE=InnoDB, CHARSET=utf8;
58a4e6bb
FB
7
8# vim:set syntax=mysql: