Commit 993cf1dd59dd3ba1ba8d59414c6b9dc6dffd95b2
1 parent
7d01e324
Add entries for document_transaction_types_lookup
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@338 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
6 additions
and
0 deletions
sql/tables.sql
| ... | ... | @@ -527,6 +527,12 @@ INSERT INTO document_type_fields_link (document_type_id, field_id, is_mandatory) |
| 527 | 527 | INSERT INTO document_type_fields_link (document_type_id, field_id, is_mandatory) VALUES (1, 2, 0); |
| 528 | 528 | INSERT INTO document_type_fields_link (document_type_id, field_id, is_mandatory) VALUES (1, 3, 0); |
| 529 | 529 | |
| 530 | +INSERT INTO document_transaction_types_lookup (name) VALUES ("Create"); | |
| 531 | +INSERT INTO document_transaction_types_lookup (name) VALUES ("Update"); | |
| 532 | +INSERT INTO document_transaction_types_lookup (name) VALUES ("Delete"); | |
| 533 | +INSERT INTO document_transaction_types_lookup (name) VALUES ("Rename"); | |
| 534 | +INSERT INTO document_transaction_types_lookup (name) VALUES ("Move"); | |
| 535 | + | |
| 530 | 536 | INSERT INTO folders (name, description, parent_id, creator_id, document_type_id, unit_id, is_public) |
| 531 | 537 | VALUES ("Documents", "Root Document Folder", 0, 1, 51, 0, 0); |
| 532 | 538 | ... | ... |