mirror of
https://github.com/documize/community.git
synced 2025-07-23 15:19:42 +02:00
moved document meta
This commit is contained in:
parent
877a6b5096
commit
39fcb04604
28 changed files with 859 additions and 836 deletions
16
core/database/scripts/autobuild/db_00006.sql
Normal file
16
core/database/scripts/autobuild/db_00006.sql
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* enterprise edition */
|
||||
DROP TABLE IF EXISTS `participant`;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `participant` (
|
||||
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
`refid` CHAR(16) NOT NULL COLLATE utf8_bin,
|
||||
`orgid` CHAR(16) NOT NULL COLLATE utf8_bin,
|
||||
`documentid` CHAR(16) NOT NULL COLLATE utf8_bin,
|
||||
`userid` CHAR(16) DEFAULT '' COLLATE utf8_bin,
|
||||
`roletype` CHAR(1) NOT NULL DEFAULT 'I' COLLATE utf8_bin,
|
||||
`lastviewed` TIMESTAMP NULL,
|
||||
`created` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
CONSTRAINT pk_id PRIMARY KEY (id),
|
||||
INDEX `idx_participant_documentid` (`documentid` ASC))
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
|
||||
ENGINE = InnoDB;
|
Loading…
Add table
Add a link
Reference in a new issue