added comsumer_secret to consumer table on postgres

This commit is contained in:
Brenda Wallace 2010-05-21 21:09:40 +12:00
parent 069a38e624
commit 8395925247
1 changed files with 1 additions and 0 deletions

View File

@ -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' */,