summaryrefslogtreecommitdiffstats
path: root/create_database.sql
diff options
context:
space:
mode:
Diffstat (limited to 'create_database.sql')
-rw-r--r--create_database.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/create_database.sql b/create_database.sql
index 319cdd3..339c337 100644
--- a/create_database.sql
+++ b/create_database.sql
@@ -457,3 +457,11 @@ UNLOCK TABLES;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+DROP TABLE IF EXISTS `user_openids`;
+create table user_openids (
+ openid_url varchar(255) not null,
+ primary key (openid_url),
+
+ user_id int not null,
+ index (user_id)
+);