Commit 8a66fb2a466260af3fa19f7457e30c5f406bd225

Authored by Neil Blakey-Milner
1 parent 1b9d9ba5

document_incomplete reminds the system what aspects of an incomplete

document still need to be performed before the document changes from
incomplete to live.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3616 c91229c3-7414-0410-bfa2-8a42b809f60b
sql/mysql/upgrade/2.0.9/document_incomplete.sql 0 → 100644
  1 +CREATE TABLE `document_incomplete` (
  2 + `id` int(10) unsigned NOT NULL default '0',
  3 + `contents` tinyint(1) unsigned NOT NULL default '0',
  4 + `metadata` tinyint(1) unsigned NOT NULL default '0',
  5 + PRIMARY KEY (`id`)
  6 +) TYPE=InnoDB;
... ...