From 8a66fb2a466260af3fa19f7457e30c5f406bd225 Mon Sep 17 00:00:00 2001 From: Neil Blakey-Milner Date: Mon, 19 Sep 2005 19:53:07 +0000 Subject: [PATCH] document_incomplete reminds the system what aspects of an incomplete document still need to be performed before the document changes from incomplete to live. --- sql/mysql/upgrade/2.0.9/document_incomplete.sql | 6 ++++++ 1 file changed, 6 insertions(+), 0 deletions(-) create mode 100644 sql/mysql/upgrade/2.0.9/document_incomplete.sql diff --git a/sql/mysql/upgrade/2.0.9/document_incomplete.sql b/sql/mysql/upgrade/2.0.9/document_incomplete.sql new file mode 100644 index 0000000..62bb7aa --- /dev/null +++ b/sql/mysql/upgrade/2.0.9/document_incomplete.sql @@ -0,0 +1,6 @@ +CREATE TABLE `document_incomplete` ( + `id` int(10) unsigned NOT NULL default '0', + `contents` tinyint(1) unsigned NOT NULL default '0', + `metadata` tinyint(1) unsigned NOT NULL default '0', + PRIMARY KEY (`id`) +) TYPE=InnoDB; -- libgit2 0.21.4