JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed css so prioritize links don't make a horizontal scroll bar
[contractor-progress.git] / tasks.sql
1 drop table if exists tasks;
2 create table tasks (
3     id int unique auto_increment,
4     client_id int not null default 0,
5     finished_at varchar(20) not null default "",
6     price varchar(20) not null default "",
7     ord int not null default 0,
8     title varchar(200) not null default "",
9     url varchar(200) not null default "",
10     description text not null default "",
11     state int not null default 0,
12     paid int not null default 0
13 );