]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Create new field in consumer table in 08to09.sql
authorCiaran Gultnieks <ciaran@ciarang.com>
Mon, 1 Feb 2010 21:05:50 +0000 (21:05 +0000)
committerBrion Vibber <brion@pobox.com>
Thu, 4 Mar 2010 16:33:07 +0000 (08:33 -0800)
db/08to09.sql

index 3ebb141bf6991afe3828f5ed1fa387053025b5b9..05958f6123e3c8a459c5d2e76a64dfabfd26f891 100644 (file)
@@ -110,6 +110,9 @@ insert into queue_item_new (frame,transport,created,claimed)
 alter table queue_item rename to queue_item_old;
 alter table queue_item_new rename to queue_item;
 
+alter table consumer
+    add column  consumer_secret varchar(255) not null comment 'secret value';
+
 create table oauth_application (
     id integer auto_increment primary key comment 'unique identifier',
     owner integer not null comment 'owner of the application' references profile (id),