From: Brion Vibber Date: Thu, 28 Jan 2010 01:34:13 +0000 (-0800) Subject: fix update script -- read the diff wrong and put a couple fields on wrong table ... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=07d50a012af70d9bd35a26f645d791ae7ba29986;p=quix0rs-gnu-social.git fix update script -- read the diff wrong and put a couple fields on wrong table (whoops) --- diff --git a/db/rc3torc4.sql b/db/rc3torc4.sql index 8342c4bc6f..917c1f1c41 100644 --- a/db/rc3torc4.sql +++ b/db/rc3torc4.sql @@ -15,7 +15,9 @@ alter table queue_item rename to queue_item_old; alter table queue_item_new rename to queue_item; alter table consumer - add consumer_secret varchar(255) not null comment 'secret value', + add consumer_secret varchar(255) not null comment 'secret value'; + +alter table token add verifier varchar(255) comment 'verifier string for OAuth 1.0a', add verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a';