antville/antville_dbpatch20020109.sql

6 lines
278 B
MySQL
Raw Normal View History

2002-01-22 18:54:09 +00:00
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;
2002-01-22 22:24:08 +00:00
update MEMBER set LEVEL = 9361 where LEVEL = 1;
2002-01-24 14:39:25 +00:00
update TEXT set EDITABLEBY = null where EDITABLEBY > 1;