diff options
author | Brenda Wallace <shiny@cpan.org> | 2010-05-21 21:09:40 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2010-05-21 21:09:40 +1200 |
commit | 839592524783a686b4c5410ba5e273617132df06 (patch) | |
tree | 8df74c9f702ab8a3400920fb4d9f58e196c19a0a /db | |
parent | 069a38e624836cfd3f0fa6cd0f34d9c8cc1eb564 (diff) |
added comsumer_secret to consumer table on postgres
Diffstat (limited to 'db')
-rw-r--r-- | db/statusnet_pg.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 9f97566a9..aad0def36 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -187,6 +187,7 @@ create index fave_modified_idx on fave using btree(modified); create table consumer ( consumer_key varchar(255) primary key /* comment 'unique identifier, root URL' */, + consumer_secret varchar(255) not null /* comment 'secret value', */, seed char(32) not null /* comment 'seed for new tokens by this consumer' */, created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */, |