summaryrefslogtreecommitdiff
path: root/db/statusnet.sql
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-01-13 21:14:22 +0000
committerZach Copley <zach@status.net>2010-01-24 16:36:05 -0800
commitd33040089d660d897183df8e94c2a65bb8c8c85f (patch)
treeb682ee2ab8ae253c255dfd1a757e9390463dedfe /db/statusnet.sql
parent9e7f47652d860d7f1e296dd369c4e68814bf2636 (diff)
Remove verifier from Oauth_application_user (not needed there)
Diffstat (limited to 'db/statusnet.sql')
-rw-r--r--db/statusnet.sql1
1 files changed, 0 insertions, 1 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql
index b1867e7f0..3a74f9d7a 100644
--- a/db/statusnet.sql
+++ b/db/statusnet.sql
@@ -230,7 +230,6 @@ create table oauth_application_user (
application_id integer not null comment 'id of the application' references oauth_application (id),
access_type tinyint default 0 comment 'access type, bit 1 = read, bit 2 = write, bit 3 = revoked',
token varchar(255) comment 'request or access token',
- verifier varchar(255) not null comment 'verification code',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
constraint primary key (profile_id, application_id)