Update import scripts: create table using InnoDB engine.
[platal.git] / upgrade / account / 04_emails.sql
index c8df1a1..4036f17 100644 (file)
@@ -3,6 +3,6 @@ create table email_options (
   storage set('imap', 'googleapps') not null default '',
 
   primary key uid (uid)
-);
+) ENGINE=InnoDB, CHARSET=utf8;
 
 # vim:set syntax=mysql: