From 75259a27eb896473c456267fff32214100bfff08 Mon Sep 17 00:00:00 2001 From: mukhtar Date: Thu, 20 Feb 2003 14:52:10 +0000 Subject: [PATCH] added full_path char(255) and parent_folder_ids CHAR(100) to documents table --- sql/tables.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sql/tables.sql b/sql/tables.sql index 7895a3c..a3729c2 100644 --- a/sql/tables.sql +++ b/sql/tables.sql @@ -77,7 +77,10 @@ mime_id INTEGER NOT NULL, folder_id INTEGER NOT NULL, major_version INTEGER NOT NULL, minor_version INTEGER NOT NULL, -is_checked_out BIT NOT NULL +is_checked_out BIT NOT NULL, +parent_folder_ids CHAR(100), +full_path CHAR(255) + )TYPE = InnoDB; CREATE TABLE document_subscriptions ( -- libgit2 0.21.4