JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
815969e070fc2cdceba8ca6eb099ea9af7e4a394
[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     sizes text not null default ""
8 );