mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 11:46:04 +08:00
9 lines
245 B
PL/PgSQL
9 lines
245 B
PL/PgSQL
BEGIN;
|
|
|
|
ALTER TABLE UserAccounts ADD COLUMN UserLevel integer NOT NULL DEFAULT 0;
|
|
ALTER TABLE UserAccounts ADD COLUMN UserFlags integer NOT NULL DEFAULT 0;
|
|
ALTER TABLE UserAccounts ADD COLUMN UserTitle varchar(64) NOT NULL DEFAULT '';
|
|
|
|
COMMIT;
|
|
|