JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
eee20b385bc3208a041ce65d3d9672b05019a941
[wfpl.git] / metaform / template.sql
1 drop table if exists ~form_name~;
2 create table ~form_name~ (
3     id int unique auto_increment<!--~column start~-->,
4     ~name~ ~type~ not null default ~default~<!--~end~-->
5 );