DataObjects/Core_person_alias.php
authorAlan Knowles <alan@akbkhome.com>
Mon, 14 Mar 2011 10:47:11 +0000 (18:47 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 14 Mar 2011 10:47:11 +0000 (18:47 +0800)
DataObjects/Core_person_alias.php [new file with mode: 0644]

diff --git a/DataObjects/Core_person_alias.php b/DataObjects/Core_person_alias.php
new file mode 100644 (file)
index 0000000..c43b749
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+/**
+ * Table Definition for core_person_alias
+ */
+require_once 'DB/DataObject.php';
+
+class Pman_Core_DataObjects_Core_person_alias extends DB_DataObject 
+{
+    ###START_AUTOCODE
+    /* the code below is auto generated do not remove the above tag */
+
+    public $__table = 'core_person_alias';               // table name
+    public $id;                              // int(11)  not_null primary_key auto_increment
+    public $person_id;                       // string(128)  
+    public $alias;                           // string(254)  not_null
+
+    
+    /* the code above is auto generated do not remove the tag below */
+    ###END_AUTOCODE
+}