Typo.
[platal.git] / upgrade / account / 02_carnet.sql
index 8e635fa..aad0369 100644 (file)
@@ -1,3 +1,4 @@
+drop table if exists watch;
 create table watch (
   uid   int(6) not null,
   flags set('contacts', 'mail') not null default 'contacts',
@@ -6,6 +7,6 @@ create table watch (
 
   primary key uid (uid),
   key flags (flags)
-);
+) ENGINE=InnoDB, CHARSET=utf8;
 
 # vim:set syntax=mysql: