diff --git a/dmp-db-scema/DataManagementPlanDB.sql b/dmp-db-scema/DataManagementPlanDB.sql index b7c54b14f..8d0ce0a6c 100644 --- a/dmp-db-scema/DataManagementPlanDB.sql +++ b/dmp-db-scema/DataManagementPlanDB.sql @@ -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 );