mirror of
https://github.com/documize/community.git
synced 2025-07-20 13:49:42 +02:00
10 lines
320 B
MySQL
10 lines
320 B
MySQL
|
/* community edition */
|
||
|
|
||
|
-- role and role membership
|
||
|
ALTER TABLE role ADD COLUMN `purpose` VARCHAR(100) DEFAULT '' NOT NULL AFTER `role`;
|
||
|
ALTER TABLE role ADD COLUMN `revised` TIMESTAMP DEFAULT CURRENT_TIMESTAMP AFTER `created`;
|
||
|
CREATE INDEX idx_role_1 ON role(orgid);
|
||
|
|
||
|
-- deprecations
|
||
|
DROP TABLE IF EXISTS `labelrole`;
|