Files
2024-02-28 16:26:17 +08:00

15 lines
379 B
PHP

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