JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
stylus helper for ckeditor sizing
[wfpl-cms.git] / admin_users.sql
1 drop table if exists users;
2 create table users (
3         id int unique auto_increment,
4         name varchar(200) binary not null default "",
5         username varchar(200) binary not null default "",
6         password varchar(255) binary not null default "",
7         role varchar(200) binary not null default "",
8         last_active int(11) not null default 0,
9         last_login int(11) not null default 0
10 ) CHARSET=utf8;