* feat: add automations plugin * feat: support users views as submenu * fix: reload users collection options on initialization * 表单细节 * 细节更新 * filterable * fix: can not disassociate before destroy data * 暂存 * 表单联动细节 * 补充细节 * 补充测试和细节改进 * 补充细节和测试 * 再来一波更新
24 lines
341 B
TypeScript
24 lines
341 B
TypeScript
import { TableOptions } from '@nocobase/database';
|
|
|
|
export default {
|
|
name: 'tests',
|
|
fields: [
|
|
{
|
|
type: 'string',
|
|
name: 'name1',
|
|
},
|
|
{
|
|
type: 'string',
|
|
name: 'name2',
|
|
},
|
|
{
|
|
type: 'date',
|
|
name: 'date1',
|
|
},
|
|
{
|
|
type: 'date',
|
|
name: 'date2',
|
|
}
|
|
],
|
|
} as TableOptions;
|