aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/Resources/004_UserAccount.sql
blob: a9a9021cc74ee5d6203a8c8bfa13fa6ed0bcd268 (plain)
1
2
3
4
5
6
7
BEGIN TRANSACTION

ALTER TABLE UserAccounts ADD UserLevel integer NOT NULL DEFAULT 0;
ALTER TABLE UserAccounts ADD UserFlags integer NOT NULL DEFAULT 0;
ALTER TABLE UserAccounts ADD UserTitle varchar(64) NOT NULL DEFAULT '';

COMMIT