JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
don't let image captions inherit boldness
[wfpl-cms.git] / admin_admins.sql
1 drop table if exists admins;
2 create table admins (
3     id int unique auto_increment,
4     name varchar(100) not null default "",
5     username varchar(50) not null default "",
6     password varchar(50) not null default "",
7     privs varchar(100) not null default ""
8 );