mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
7 lines
124 B
PL/PgSQL
7 lines
124 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE `regions` ADD COLUMN `flags` integer NOT NULL DEFAULT 0;
|
|
CREATE INDEX flags ON regions(flags);
|
|
|
|
COMMIT;
|