]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
SQL script to update status_network table
authorJames Walker <walkah@walkah.net>
Wed, 28 Jul 2010 15:50:04 +0000 (11:50 -0400)
committerJames Walker <walkah@walkah.net>
Wed, 28 Jul 2010 15:50:04 +0000 (11:50 -0400)
db/site_093to094.sql [new file with mode: 0644]

diff --git a/db/site_093to094.sql b/db/site_093to094.sql
new file mode 100644 (file)
index 0000000..30cea31
--- /dev/null
@@ -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;
+