blob: 6edf7e90520bcd82fc1620aec6bbe699bcec3310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
CREATE TABLE conditions_tmp (
conditionid bigint DEFAULT '0' NOT NULL,
actionid bigint DEFAULT '0' NOT NULL,
conditiontype integer DEFAULT '0' NOT NULL,
operator integer DEFAULT '0' NOT NULL,
value varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (conditionid)
) with OIDS;
CREATE INDEX conditions_1 on conditions_tmp (actionid);
insert into conditions_tmp select * from conditions;
drop table conditions;
alter table conditions_tmp rename to conditions;
|