--- /dev/null
+<?php
+/**
+ * Table Definition for confirm_address
+ */
+require_once 'DB/DataObject.php';
+
+class Confirm_address extends DB_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'confirm_address'; // table name
+ public $code; // varchar(32) primary_key not_null
+ public $user_id; // int(4) not_null
+ public $address; // varchar(255) not_null
+ public $address_type; // varchar(32) not_null
+ public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+
+ /* Static get */
+ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Confirm_address',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}
+++ /dev/null
-<?php
-/**
- * Table Definition for confirm_email
- */
-require_once 'DB/DataObject.php';
-
-class Confirm_email extends DB_DataObject
-{
- ###START_AUTOCODE
- /* the code below is auto generated do not remove the above tag */
-
- public $__table = 'confirm_email'; // table name
- public $code; // varchar(32) primary_key not_null
- public $user_id; // int(4) not_null
- public $email; // varchar(255) not_null
- public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
-
- /* Static get */
- function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Confirm_email',$k,$v); }
-
- /* the code above is auto generated do not remove the tag below */
- ###END_AUTOCODE
-}
public $nickname; // varchar(64) unique_key
public $password; // varchar(255)
public $email; // varchar(255) unique_key
+ public $jabber; // varchar(255) unique_key
+ public $sms; // varchar(64) unique_key
public $uri; // varchar(255) unique_key
public $created; // datetime() not_null
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
height = K
url = U
-[confirm_email]
+[confirm_address]
code = 130
user_id = 129
-email = 130
+address = 130
+address_type = 130
modified = 384
-[confirm_email__keys]
+[confirm_address__keys]
code = K
[consumer]
nickname = 2
password = 2
email = 2
+jabber = 2
+sms = 2
uri = 2
created = 142
modified = 384
id = K
nickname = U
email = U
+jabber = U
+sms = U
uri = U
[user_openid]