summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-01-27 17:34:13 -0800
committerBrion Vibber <brion@pobox.com>2010-01-27 17:34:13 -0800
commit07d50a012af70d9bd35a26f645d791ae7ba29986 (patch)
treeb980115a08562554473b68c6bf6c89df6b84bb03
parentf296f04abdc545f03daf55676282a2ae7108f79e (diff)
fix update script -- read the diff wrong and put a couple fields on wrong table (whoops)
-rw-r--r--db/rc3torc4.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/rc3torc4.sql b/db/rc3torc4.sql
index 8342c4bc6..917c1f1c4 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';