mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 11:25:39 +08:00
* It only persists across reboots for the mySQL datastore currently. * Currently have stubs in the other datastores.
5 lines
231 B
PL/PgSQL
5 lines
231 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE regionban (regionUUID VARCHAR(36) NOT NULL, bannedUUID VARCHAR(36) NOT NULL, bannedIp VARCHAR(16) NOT NULL, bannedIpHostMask VARCHAR(16) NOT NULL) ENGINE=INNODB DEFAULT CHARSET=utf8 COMMENT='Rev. 1';
|
|
|
|
COMMIT; |