JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
* db.php (db_get_assoc, db_get_assocs): new functions to ease use of new template...
[wfpl.git] / metaform / template.sql
1 drop table if exists ~table_name~;
2 create table ~table_name~ (
3     id int unique auto_increment<!--~column start~-->,
4     ~name~ ~type~ not null default ~default~<!--~end~-->
5 );