blob: bbd620b6123318cbed9b351a9367bdccea5e5cfd (
plain)
1
2
3
4
5
6
7
|
delete from profiles;
alter table profiles drop index profiles_1;
alter table profiles add value2 varchar(255) DEFAULT '' NOT NULL;
alter table profiles add source varchar(255) DEFAULT '' NOT NULL;
CREATE INDEX profiles_1 on profiles (idx);
|