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,
|
"Status" smallint not null default 0,
|
||||||
"Created" timestamp not null default NOW(),
|
"Created" timestamp not null default NOW(),
|
||||||
"Modified" timestamp not null default NOW(),
|
"Modified" timestamp not null default NOW(),
|
||||||
|
"Description" text,
|
||||||
"Profile" uuid
|
"Profile" uuid
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -118,6 +119,7 @@ CREATE TABLE "Dataset" (
|
||||||
"Status" smallint not null default 0,
|
"Status" smallint not null default 0,
|
||||||
"Created" timestamp not null default NOW(),
|
"Created" timestamp not null default NOW(),
|
||||||
"Modified" timestamp not null default NOW(),
|
"Modified" timestamp not null default NOW(),
|
||||||
|
"Description" text,
|
||||||
"Profile" uuid
|
"Profile" uuid
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -139,6 +141,7 @@ CREATE TABLE "DatasetProfile" (
|
||||||
"Status" smallint not null default 0,
|
"Status" smallint not null default 0,
|
||||||
"Created" timestamp not null default NOW(),
|
"Created" timestamp not null default NOW(),
|
||||||
"Modified" timestamp not null default NOW(),
|
"Modified" timestamp not null default NOW(),
|
||||||
|
"Description" text,
|
||||||
"Definition" xml NOT NULL
|
"Definition" xml NOT NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -216,6 +219,7 @@ CREATE TABLE "Project" (
|
||||||
"Modified" timestamp not null default NOW(),
|
"Modified" timestamp not null default NOW(),
|
||||||
"StartDate" timestamp,
|
"StartDate" timestamp,
|
||||||
"EndDate" timestamp,
|
"EndDate" timestamp,
|
||||||
|
"Description" text,
|
||||||
"Definition" xml
|
"Definition" xml
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue