action.php 379 B

1234567891011121314
  1. <?php
  2. $this->app->loadLang('action');
  3. $schema = new stdclass();
  4. $schema->primaryTable = 'action';
  5. $schema->tables = array();
  6. $schema->tables['action'] = 'zt_action';
  7. $schema->fields = array();
  8. $schema->fields['id'] = array('type' => 'number', 'name' => $this->lang->action->id);
  9. $schema->fields['actor'] = array('type' => 'user', 'name' => $this->lang->action->actor);