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