Commit 42fba59e4dee03a994b74bfacce2e62999464962

Authored by Neil Blakey-Milner
1 parent 11b30c42

Remove id and sequence from document_text.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3169 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 0 additions and 13 deletions
sql/mysql/install/tables.sql
@@ -235,10 +235,8 @@ CREATE TABLE document_subscriptions ( @@ -235,10 +235,8 @@ CREATE TABLE document_subscriptions (
235 -- 235 --
236 236
237 CREATE TABLE document_text ( 237 CREATE TABLE document_text (
238 - id int(11) NOT NULL default '0',  
239 document_id int(11) default NULL, 238 document_id int(11) default NULL,
240 document_text mediumtext, 239 document_text mediumtext,
241 - UNIQUE KEY id (id),  
242 KEY document_text_document_id_indx (document_id), 240 KEY document_text_document_id_indx (document_id),
243 FULLTEXT KEY document_text (document_text) 241 FULLTEXT KEY document_text (document_text)
244 ) TYPE=MyISAM; 242 ) TYPE=MyISAM;
@@ -915,17 +913,6 @@ CREATE TABLE zseq_document_subscriptions ( @@ -915,17 +913,6 @@ CREATE TABLE zseq_document_subscriptions (
915 -- -------------------------------------------------------- 913 -- --------------------------------------------------------
916 914
917 -- 915 --
918 --- Table structure for table `zseq_document_text`  
919 ---  
920 -  
921 -CREATE TABLE zseq_document_text (  
922 - id int(10) unsigned NOT NULL auto_increment,  
923 - PRIMARY KEY (id)  
924 -) TYPE=MyISAM;  
925 -  
926 --- --------------------------------------------------------  
927 -  
928 ---  
929 -- Table structure for table `zseq_document_transaction_types_lookup` 916 -- Table structure for table `zseq_document_transaction_types_lookup`
930 -- 917 --
931 918