]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add queueing variables to confirm_address
authorEvan Prodromou <evan@prodromou.name>
Sun, 6 Jul 2008 03:12:34 +0000 (23:12 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sun, 6 Jul 2008 03:12:34 +0000 (23:12 -0400)
darcs-hash:20080706031234-84dde-42e06c969ef6e8a63c527c197d7f074f7346d223.gz

classes/Confirm_address.php
classes/stoica.ini
db/laconica.sql

index 50711999f6aff79e2abb2711ef513c7686d8ce9a..80dc9462139fa64e638834004943efc39fa04772 100644 (file)
@@ -15,6 +15,8 @@ class Confirm_address extends DB_DataObject
     public $address;                         // varchar(255)   not_null
     public $address_extra;                   // varchar(255)   not_null
     public $address_type;                    // varchar(8)   not_null
+    public $claimed;                         // datetime()  
+    public $sent;                            // datetime()  
     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
 
     /* Static get */
index 3d59be8ee73ae8a14781bd68ef7bfeac38b6808e..67992ea7f5dfb2e34aeb8caed829e174f950be52 100644 (file)
@@ -22,6 +22,8 @@ user_id = 129
 address = 130
 address_extra = 130
 address_type = 130
+claimed = 14
+sent = 14
 modified = 384
 
 [confirm_address__keys]
index 66d9a978142a22257bf965a0400b3a64ce7df0eb..6db9b6cf6bfc4265038bd05d2f26b09d742482a6 100644 (file)
@@ -165,6 +165,8 @@ create table confirm_address (
     address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
     address_extra varchar(255) not null comment 'carrier ID, for SMS',
     address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
+    claimed datetime comment 'date this was claimed for queueing',
+    sent datetime comment 'date this was sent for queueing',
     modified timestamp comment 'date this record was modified'
 ) ENGINE=InnoDB;