fix update script -- read the diff wrong and put a couple fields on wrong table (whoops)

This commit is contained in:
Brion Vibber 2010-01-27 17:34:13 -08:00
parent f296f04abd
commit 07d50a012a
1 changed files with 3 additions and 1 deletions

View File

@ -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';