initial import to SVN
This commit is contained in:
commit
d2f3925fbb
209 changed files with 45450 additions and 0 deletions
5
src/1.0.x-to-1.1.0.sql
Normal file
5
src/1.0.x-to-1.1.0.sql
Normal file
|
@ -0,0 +1,5 @@
|
|||
ALTER TABLE users ADD approved bit NOT NULL;
|
||||
UPDATE users SET approved = 1;
|
||||
ALTER TABLE users ADD admin bit NOT NULL;
|
||||
UPDATE users SET admin = 0;
|
||||
UPDATE users SET admin = 1 WHERE username = 'yournamehere';
|
Loading…
Add table
Add a link
Reference in a new issue