]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add confirmemail table
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 20 Jun 2008 04:10:12 +0000 (00:10 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 20 Jun 2008 04:10:12 +0000 (00:10 -0400)
darcs-hash:20080620041012-5ed1f-20a7d4df375250f5c4eff90cdab80b22348b1088.gz

db/laconica.sql

index 03e823d50dbbdb65785cb6334cf922b3f1cb3360..7935b8b071c5311e546e0788cc6a186b4b278a7f 100644 (file)
@@ -144,3 +144,10 @@ create table oid_nonces (
     salt CHAR(40),
     UNIQUE (server_url(255), timestamp, salt)
 ) ENGINE=InnoDB;
+
+create table confirmemail (
+    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.',
+    modified timestamp comment 'date this record was modified'
+);