JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
9c27796c813df005982eace58b862c332e4100e4
[wfpl.git] / metaform / template.sql
1 drop table if exists ~table_name~;
2 create table ~table_name~ (
3     id int unique auto_increment~column {~,
4     ~name~ ~type~ not null default ~default~~}~
5 ) CHARSET=utf8;