summaryrefslogtreecommitdiff
path: root/db/statusnet.sql
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-10-01 16:17:43 -0700
committerZach Copley <zach@status.net>2009-10-01 16:17:43 -0700
commitb3bbaecf47d74102a2ed48cd0c773d33a4a49d59 (patch)
tree5aed1f7150ac6a988148499cd8beae8b1854648f /db/statusnet.sql
parentb0ddb971e61bd98250c41e653ab2e649a9b08926 (diff)
parentf65baaaa4f48b84392200bb54161887669440cab (diff)
Merge branch '0.9.x' into refactor-api
* 0.9.x: change DB so OpenIDPlugin manages OpenID tables Some bug fixes check the schema add some more methods to Schema Added hook for Aside container Revert "Outputting UTF-8 charset in document header irrespective of mimetype." FOAF for Groups. use schema tool to create a table statusize schema-related modules test script for schema code make table def method of schema code work start a module for schema management
Diffstat (limited to 'db/statusnet.sql')
-rw-r--r--db/statusnet.sql12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql
index 221d60ce3..dfcddb643 100644
--- a/db/statusnet.sql
+++ b/db/statusnet.sql
@@ -195,18 +195,6 @@ create table nonce (
constraint primary key (consumer_key, ts, nonce)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
-/* One-to-many relationship of user to openid_url */
-
-create table user_openid (
- canonical varchar(255) primary key comment 'Canonical true URL',
- display varchar(255) not null unique key comment 'URL for viewing, may be different from canonical',
- user_id integer not null comment 'user owning this URL' references user (id),
- created datetime not null comment 'date this record was created',
- modified timestamp comment 'date this record was modified',
-
- index user_openid_user_id_idx (user_id)
-) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
-
/* These are used by JanRain OpenID library */
create table oid_associations (