JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
stylus helper for ckeditor sizing
[wfpl-cms.git] / admin_files.sql
1 drop table if exists files;
2 create table files (
3     id int unique auto_increment,
4     filename varchar(100) not null default "",
5     description varchar(200) not null default ""
6 );