Skip to content

Instantly share code, notes, and snippets.

@smalyshev
Created February 2, 2011 01:43
Show Gist options
  • Save smalyshev/807102 to your computer and use it in GitHub Desktop.
Save smalyshev/807102 to your computer and use it in GitHub Desktop.
<?php
'fields' => array(
'id' => array('type' => 'id'),
'name' => array('type' => 'varchar'),
'date_created' => array('type' => 'datetime'),
'assigned_to' => array('type' => 'assigned_user_id'),
'account_name' => array('type' => 'relate', 'link' => 'accounts'),
'account_id' => array('type' => 'relate', 'link' => 'accounts'),
'reports_to_id' => array('type' => 'id', 'link' => 'reports_to_link'),
'reports_to_name' => array('type' => 'relate', 'link' => 'reports_to_link'),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment