]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added verifier and verified_callback to postgres schema and update script
authorBrenda Wallace <shiny@cpan.org>
Sat, 22 May 2010 08:04:46 +0000 (20:04 +1200)
committerBrenda Wallace <shiny@cpan.org>
Sat, 22 May 2010 08:04:46 +0000 (20:04 +1200)
db/08to09_pg.sql
db/statusnet_pg.sql

index a1cbad8148f22aa0d990dfd3616eb8b1ad279d1b..ecf10088407bd50d0fef28bc5231fbfa7adaed6d 100644 (file)
@@ -83,3 +83,6 @@ ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for loc
 
 ALTER TABLE consumer add COLUMN consumer_secret varchar(255) not null ; /*comment 'secret value'*/
 
+ALTER TABLE token ADD COLUMN verifier varchar(255); /* comment 'verifier string for OAuth 1.0a',*/
+ALTER TABLE token ADD COLUMN verified_callback varchar(255); /* comment 'verified callback URL for OAuth 1.0a',*/
+
index aad0def360d2af2a80fa16480f62fddc9cbcc733..d8f5286bd586f83cff03dc7c0f8aa262a20ce8fd 100644 (file)
@@ -201,6 +201,9 @@ create table token (
     type integer not null default 0 /* comment 'request or access' */,
     state integer default 0 /* comment 'for requests 0 = initial, 1 = authorized, 2 = used' */,
 
+    verifier varchar(255) comment 'verifier string for OAuth 1.0a',
+    verified_callback varchar(255) comment 'verified callback URL for OAuth 1.0a',
+
     created timestamp not null default CURRENT_TIMESTAMP /* comment 'date this record was created' */,
     modified timestamp /* comment 'date this record was modified' */,