antville/antville_dbpatch20020109.sql
Robert Gaggl 569e814296 bugfix
2002-01-24 14:39:25 +00:00

6 lines
No EOL
278 B
SQL

use antville;
alter table WEBLOG drop column USERMAYSIGNUP;
alter table MEMBER change column LEVEL LEVEL mediumint(10) null;
update MEMBER set LEVEL = 131071 where LEVEL = 2;
update MEMBER set LEVEL = 9361 where LEVEL = 1;
update TEXT set EDITABLEBY = null where EDITABLEBY > 1;