JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
27e29e74334f1696ef5274d2e9f66aa0cf4d1fd0
[wfpl-cms.git] / admin_images.sql
1 drop table if exists cms_images;
2 create table cms_images (
3     id int unique auto_increment,
4     image varchar(240) not null default "",
5     name varchar(200) not null default "",
6     caption varchar(200) not null default "",
7     created_at int not null default 0
8 );