Oops.
[platal.git] / upgrade / account / 04_emails.sql
index c8df1a1..70b4736 100644 (file)
@@ -1,8 +1,9 @@
+drop table if exists email_options;
 create table email_options (
   uid int(6) not null,
   storage set('imap', 'googleapps') not null default '',
 
   primary key uid (uid)
-);
+) ENGINE=InnoDB, CHARSET=utf8;
 
 # vim:set syntax=mysql: