Renamed upgrade_4.0.3-4.1.0.sql to upgrade_4.0.4-4.1.0.sql

This commit is contained in:
JT Smith 2002-06-23 21:26:02 +00:00
parent 0bbac97150
commit 6497c26f08

View file

@ -0,0 +1,13 @@
insert into webguiVersion values ('4.1.0','upgrade',unix_timestamp());
alter table users add column karma int not null default 0;
alter table groups add column karmaThreshold int not null default 1000000000;
create table karmaLog (
userId int not null,
amount int not null default 1,
source varchar(255),
description text
);
INSERT INTO international VALUES (537,'WebGUI','English','Karma');
INSERT INTO international VALUES (538,'WebGUI','English','Karma Threshold');
delete from groupings where groupId=1 or groupId=2 or groupId=7;