src/main/resources/db/db-schema.sql
changeset 101 b6a00fd29998
parent 100 1fcbeae1f9da
child 104 ef29ecada49d
equal deleted inserted replaced
100:1fcbeae1f9da 101:b6a00fd29998
   190   );
   190   );
   191 create sequence "project_id_seq";
   191 create sequence "project_id_seq";
   192 create table "task" (
   192 create table "task" (
   193     "id" bigint primary key not null,
   193     "id" bigint primary key not null,
   194     "name" varchar(100) not null,
   194     "name" varchar(100) not null,
       
   195     "num" integer not null,
   195     "project_id" bigint not null,
   196     "project_id" bigint not null,
   196     "responsible" bigint not null,
   197     "responsible" bigint not null,
   197     "deadline" timestamp not null,
   198     "deadline" timestamp not null,
   198     "state" bigint not null,
   199     "state" bigint not null,
   199     "task_type" bigint,
   200     "task_type" bigint,