added "Description" field on {Dataset, DatasetProfile, DMP, Project} entities
This commit is contained in:
parent
ee71134a60
commit
b4fb82d5f4
|
@ -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
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue