hasMany('Order', array('customer_id' => 'id')); } public static function getTableSchema() { return new RecordSchema(array( 'name' => 'customer', 'primaryKey' => array('id'), 'columns' => array( 'id' => 'integer', 'email' => 'string', 'name' => 'string', 'address' => 'string', 'status' => 'integer' ) )); } }