added "Description" field on {Dataset, DatasetProfile, DMP, Project} entities

This commit is contained in:
Nikolaos Laskaris 2017-11-07 10:48:11 +01:00
parent ee71134a60
commit b4fb82d5f4
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,7 @@ CREATE TABLE "DMP" (
"Status" smallint not null default 0,
"Created" timestamp not null default NOW(),
"Modified" timestamp not null default NOW(),
"Description" text,
"Profile" uuid
);
@ -118,6 +119,7 @@ CREATE TABLE "Dataset" (
"Status" smallint not null default 0,
"Created" timestamp not null default NOW(),
"Modified" timestamp not null default NOW(),
"Description" text,
"Profile" uuid
);
@ -139,6 +141,7 @@ CREATE TABLE "DatasetProfile" (
"Status" smallint not null default 0,
"Created" timestamp not null default NOW(),
"Modified" timestamp not null default NOW(),
"Description" text,
"Definition" xml NOT NULL
);
@ -216,6 +219,7 @@ CREATE TABLE "Project" (
"Modified" timestamp not null default NOW(),
"StartDate" timestamp,
"EndDate" timestamp,
"Description" text,
"Definition" xml
);