From b4fb82d5f4c1638a573c52d13f9620c183a2ad8d Mon Sep 17 00:00:00 2001 From: Nikolaos Laskaris Date: Tue, 7 Nov 2017 10:48:11 +0100 Subject: [PATCH] added "Description" field on {Dataset, DatasetProfile, DMP, Project} entities --- dmp-db-scema/DataManagementPlanDB.sql | 4 ++++ 1 file changed, 4 insertions(+) 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 );