summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrenda Wallace <shiny@cpan.org>2010-05-21 21:09:40 +1200
committerBrenda Wallace <shiny@cpan.org>2010-05-21 21:09:40 +1200
commit839592524783a686b4c5410ba5e273617132df06 (patch)
tree8df74c9f702ab8a3400920fb4d9f58e196c19a0a
parent069a38e624836cfd3f0fa6cd0f34d9c8cc1eb564 (diff)
added comsumer_secret to consumer table on postgres
-rw-r--r--db/statusnet_pg.sql1
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' */,