JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
update wfpl and templates
[contractor-progress.git] / people.sql
1 drop table if exists people;
2 create table people (
3     id int unique auto_increment,
4     username varchar(20) not null default "",
5     password char(35) not null default "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:xx",
6     email varchar(40) not null default "",
7     name varchar(200) not null default "",
8     privs int not null default 0,
9     balance decimal(10,2) not null default 0.0,
10     tiny_agreement int not null default 0
11 );