2001-01-22 10:48:24 +00:00
|
|
|
|
|
|
|
# 20/01/2001: comment/discussion code rewrite:
|
|
|
|
alter table users modify mode tinyint(1) DEFAULT '' NOT NULL;
|
|
|
|
alter table comments change sid lid int(6) DEFAULT '0' NOT NULL;
|
|
|
|
alter table comments add link varchar(16) DEFAULT '' NOT NULL;
|
|
|
|
update comments set link = 'article';
|
|
|
|
|
|
|
|
# 21/01/2001: section manager
|
|
|
|
alter table stories change category section varchar(64) DEFAULT '' NOT NULL;
|
2001-02-04 22:09:38 +00:00
|
|
|
|
|
|
|
# 31/01/2001: block rehashing
|
|
|
|
alter table blocks add remove tinyint(1) DEFAULT '0' NOT NULL;
|
2001-02-07 22:01:57 +00:00
|
|
|
|
|
|
|
# 07/02/2001: value calculation
|
|
|
|
alter table users add rating decimal(8,4) DEFAULT '0' NOT NULL;
|