diff options
author | Melanie | 2010-01-08 18:10:59 +0000 |
---|---|---|
committer | Melanie | 2010-01-08 18:10:59 +0000 |
commit | d14589d1abf4ca39a5fc5ba7be10e57edff4333c (patch) | |
tree | 2d3215a7abfa0f45898139b8a44d38ac58d09e80 /OpenSim/Data/MySQL/Resources/004_UserAccount.sql | |
parent | Inching ahead... This compiles, but very likely does not run. (diff) | |
download | opensim-SC-d14589d1abf4ca39a5fc5ba7be10e57edff4333c.zip opensim-SC-d14589d1abf4ca39a5fc5ba7be10e57edff4333c.tar.gz opensim-SC-d14589d1abf4ca39a5fc5ba7be10e57edff4333c.tar.bz2 opensim-SC-d14589d1abf4ca39a5fc5ba7be10e57edff4333c.tar.xz |
Add migrations to add fields to user and auth tables
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/004_UserAccount.sql')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/004_UserAccount.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/004_UserAccount.sql b/OpenSim/Data/MySQL/Resources/004_UserAccount.sql new file mode 100644 index 0000000..8abcd53 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/004_UserAccount.sql | |||
@@ -0,0 +1,8 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | ALTER TABLE UserAccounts ADD COLUMN UserLevel integer NOT NULL DEFAULT 0; | ||
4 | ALTER TABLE UserAccounts ADD COLUMN UserFlags integer NOT NULL DEFAULT 0; | ||
5 | ALTER TABLE UserAccounts ADD COLUMN UserTitle varchar(64) NOT NULL DEFAULT ''; | ||
6 | |||
7 | COMMIT; | ||
8 | |||