From 695ad02bdbc03150e8f7f5ebf74fa043f16b3257 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 22 Jun 2008 11:48:36 -0400 Subject: [PATCH] q darcs-hash:20080622154836-34904-0673a1ee33f35cdfd906251e50dadcbe8c4c90e7.gz --- db/laconica.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/db/laconica.sql b/db/laconica.sql index 0b07148c7e..5561076f93 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -36,6 +36,8 @@ create table user ( nickname varchar(64) unique key comment 'nickname or username, duped in profile', password varchar(255) comment 'salted password, can be null for OpenID users', email varchar(255) unique key comment 'email address for password recovery etc.', + jabber varchar(255) unique key comment 'jabber ID for notices', + sms varchar(64) unique key comment 'sms phone number', uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI', created datetime not null comment 'date this record was created', modified timestamp comment 'date this record was modified' @@ -145,9 +147,10 @@ create table oid_nonces ( UNIQUE (server_url(255), timestamp, salt) ) ENGINE=InnoDB; -create table confirm_email ( +create table confirm_address ( code varchar(32) not null primary key comment 'good random code', user_id integer not null comment 'user who requested confirmation' references user (id), - email varchar(255) not null comment 'email address for password recovery etc.', + address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)', + address_type varchar(32) not null comment 'address type ("email", "jabber", "sms")', modified timestamp comment 'date this record was modified' );