1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-10-09 13:21:55 +00:00
Files

7 lines
176 B
MySQL
Raw Permalink Normal View History

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