1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-25 06:33:47 +00:00
seahub/scripts/upgrade/sql/10.0.0/mysql/ccnet.sql

7 lines
169 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS OrgWhiteList (
id BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT,
org_id INTEGER,
white_list TEXT,
UNIQUE INDEX (org_id)
) ENGINE=INNODB;