diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-02-01 21:05:50 +0000 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-04 08:33:07 -0800 |
commit | 3d2bf5ce20d494c1d9e890e1d666008ef66e5703 (patch) | |
tree | 44b8ce8b5fe46d458a775bd9ee9207f00c3ca513 /db/08to09.sql | |
parent | 67e4c5d43be2228169f3d08feafbb6a980d4a40a (diff) |
Create new field in consumer table in 08to09.sql
Diffstat (limited to 'db/08to09.sql')
-rw-r--r-- | db/08to09.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/db/08to09.sql b/db/08to09.sql index 3ebb141bf..05958f612 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), |