--- /dev/null
+<?php
+/**
+ * Table Definition for notice
+ */
+require_once 'DB/DataObject.php';
+
+class Notice extends DB_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'notice'; // table name
+ public $id; // int(4) primary_key not_null
+ public $profile_id; // int(4) not_null
+ public $content; // varchar(140)
+ public $rendered; // varchar(140)
+ public $url; // varchar(255)
+ public $created; // datetime() not_null
+ public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+
+ /* Static get */
+ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Notice',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}
--- /dev/null
+<?php
+/**
+ * Table Definition for profile
+ */
+require_once 'DB/DataObject.php';
+
+class Profile extends DB_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'profile'; // table name
+ public $id; // int(4) primary_key not_null
+ public $nickname; // varchar(64) not_null
+ public $fullname; // varchar(255)
+ public $profileurl; // varchar(255)
+ public $homepage; // varchar(255)
+ public $bio; // varchar(140)
+ public $location; // varchar(255)
+ public $created; // datetime() not_null
+ public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+
+ /* Static get */
+ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Profile',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}
--- /dev/null
+<?php
+/**
+ * Table Definition for remote_profile
+ */
+require_once 'DB/DataObject.php';
+
+class Remote_profile extends DB_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'remote_profile'; // table name
+ public $id; // int(4) primary_key not_null
+ public $url; // varchar(255) unique_key
+ public $created; // datetime() not_null
+ public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+
+ /* Static get */
+ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Remote_profile',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}
--- /dev/null
+<?php
+/**
+ * Table Definition for subscription
+ */
+require_once 'DB/DataObject.php';
+
+class Subscription extends DB_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'subscription'; // table name
+ public $subscriber; // int(4) primary_key not_null
+ public $subscribed; // int(4) primary_key not_null
+ public $token; // varchar(255)
+ public $created; // datetime() not_null
+ public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+
+ /* Static get */
+ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Subscription',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}
--- /dev/null
+<?php
+/**
+ * Table Definition for user
+ */
+require_once 'DB/DataObject.php';
+
+class User extends DB_DataObject
+{
+ ###START_AUTOCODE
+ /* the code below is auto generated do not remove the above tag */
+
+ public $__table = 'user'; // table name
+ public $id; // int(4) primary_key not_null
+ public $password; // varchar(255)
+ public $email; // varchar(255) unique_key
+ public $created; // datetime() not_null
+ public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
+
+ /* Static get */
+ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('User',$k,$v); }
+
+ /* the code above is auto generated do not remove the tag below */
+ ###END_AUTOCODE
+}
--- /dev/null
+
+[notice]
+id = 129
+profile_id = 129
+content = 2
+rendered = 2
+url = 2
+created = 142
+modified = 384
+
+[notice__keys]
+id = N
+
+[profile]
+id = 129
+nickname = 130
+fullname = 2
+profileurl = 2
+homepage = 2
+bio = 2
+location = 2
+created = 142
+modified = 384
+
+[profile__keys]
+id = N
+
+[remote_profile]
+id = 129
+url = 2
+created = 142
+modified = 384
+
+[remote_profile__keys]
+id = K
+url = U
+
+[subscription]
+subscriber = 129
+subscribed = 129
+token = 2
+created = 142
+modified = 384
+
+[subscription__keys]
+subscriber = K
+subscribed = K
+
+[user]
+id = 129
+password = 2
+email = 2
+created = 142
+modified = 384
+
+[user__keys]
+id = K
+email = U
--- /dev/null
+[DB_DataObject]
+
+database = mysql://root:@localhost/stoica
+schema_location = /home/evan/code/stoica/classes
+class_location = /home/evan/code/stoica/classes
+require_prefix = classes/
+class_prefix =
+db_driver = MDB2 #Use this if you wish to use MDB2 as the driver
+quote_identifiers = 0