diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-02-01 21:05:50 +0000 |
---|---|---|
committer | Ciaran Gultnieks <ciaran@ciarang.com> | 2010-02-01 21:05:50 +0000 |
commit | 952b5806987e12a34e6fd75509b5d78815c1aa2d (patch) | |
tree | 7291cea1563251f053b9346b7cb2e09dbf2418ea | |
parent | c14ac57b1935a124dd4205e0f02d939086b5867e (diff) |
Create new field in consumer table in 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 d8996fedd..d5f30a26b 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), |