Commit 75259a27eb896473c456267fff32214100bfff08
1 parent
4b5fc5aa
added full_path char(255) and parent_folder_ids CHAR(100) to documents table
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1008 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
4 additions
and
1 deletions
sql/tables.sql
| ... | ... | @@ -77,7 +77,10 @@ mime_id INTEGER NOT NULL, |
| 77 | 77 | folder_id INTEGER NOT NULL, |
| 78 | 78 | major_version INTEGER NOT NULL, |
| 79 | 79 | minor_version INTEGER NOT NULL, |
| 80 | -is_checked_out BIT NOT NULL | |
| 80 | +is_checked_out BIT NOT NULL, | |
| 81 | +parent_folder_ids CHAR(100), | |
| 82 | +full_path CHAR(255) | |
| 83 | + | |
| 81 | 84 | )TYPE = InnoDB; |
| 82 | 85 | |
| 83 | 86 | CREATE TABLE document_subscriptions ( | ... | ... |