SQL script to update status_network table

This commit is contained in:
James Walker 2010-07-28 11:50:04 -04:00
parent dd7647aa95
commit 4853b1e2a0
1 changed files with 13 additions and 0 deletions

13
db/site_093to094.sql Normal file
View File

@ -0,0 +1,13 @@
alter table status_network
drop primary key,
add column site_id integer auto_increment primary key first,
add unique key (nickname);
create table status_network_tag (
site_id integer comment 'unique id',
tag varchar(64) comment 'tag name',
created datetime not null comment 'date the record was created',
constraint primary key (site_id, tag)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_general_ci;