From: Zach Copley Date: Tue, 2 Feb 2010 08:48:52 +0000 (+0000) Subject: Merge branch 'oauth-continued' into 0.9.x X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2be00ce64221197f3c8ad1458eba2488c8836e5c;hp=5e90f744a6fb58c43f8f5332ef868ba38e82b3d1;p=quix0rs-gnu-social.git Merge branch 'oauth-continued' into 0.9.x --- diff --git a/db/08to09.sql b/db/08to09.sql index d8996fedd6..d5f30a26b9 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -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),