JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
let cms do header/title on /contact
[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 );