JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform: set utf8 charset in .sql files
authorJason Woofenden <jason@jasonwoof.com>
Tue, 12 Aug 2014 02:04:09 +0000 (22:04 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Tue, 12 Aug 2014 02:04:09 +0000 (22:04 -0400)
metaform/template.sql

index f06c42d..9c27796 100644 (file)
@@ -2,4 +2,4 @@ drop table if exists ~table_name~;
 create table ~table_name~ (
     id int unique auto_increment~column {~,
     ~name~ ~type~ not null default ~default~~}~
 create table ~table_name~ (
     id int unique auto_increment~column {~,
     ~name~ ~type~ not null default ~default~~}~
-);
+) CHARSET=utf8;