mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 09:32:16 +00: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;
|
|
|