Create new field in consumer table in 08to09.sql
This commit is contained in:
parent
67e4c5d43b
commit
3d2bf5ce20
|
@ -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 rename to queue_item_old;
|
||||||
alter table queue_item_new rename to queue_item;
|
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 (
|
create table oauth_application (
|
||||||
id integer auto_increment primary key comment 'unique identifier',
|
id integer auto_increment primary key comment 'unique identifier',
|
||||||
owner integer not null comment 'owner of the application' references profile (id),
|
owner integer not null comment 'owner of the application' references profile (id),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user