summaryrefslogtreecommitdiff
path: root/classes/Confirm_email.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/Confirm_email.php')
-rw-r--r--classes/Confirm_email.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/classes/Confirm_email.php b/classes/Confirm_email.php
new file mode 100644
index 000000000..0b13a4669
--- /dev/null
+++ b/classes/Confirm_email.php
@@ -0,0 +1,23 @@
+<?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
+}