Files
2023-11-14 09:48:53 +08:00

15 lines
379 B
PHP

<?php
$this->app->loadLang('action');
$schema = new stdclass();
$schema->primaryTable = 'action';
$schema->tables = array();
$schema->tables['action'] = 'zt_action';
$schema->fields = array();
$schema->fields['id'] = array('type' => 'number', 'name' => $this->lang->action->id);
$schema->fields['actor'] = array('type' => 'user', 'name' => $this->lang->action->actor);