updated DDL for category

This commit is contained in:
Suraj 2016-02-02 23:15:28 +05:30
parent cf202e7c51
commit 9925301ce0
1 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,8 @@ is_deleted char(1) default 'N',
created_date timestamp, created_date timestamp,
last_modified_at timestamp, last_modified_at timestamp,
finish_date timestamp finish_date timestamp
, priority int); , priority integer, cat_id references category(id));
CREATE TABLE files(name varchar(1000) not null, autoName varchar(255) not null); CREATE TABLE files(name varchar(1000) not null, autoName varchar(255) not null);
CREATE TABLE category( id integer primary key autoincrement ,name varchar(1000) not null);