mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 22:27:26 +00:00
23 lines
344 B
TypeScript
23 lines
344 B
TypeScript
|
import { TableOptions } from '../../src';
|
||
|
|
||
|
export default {
|
||
|
name: 'profiles',
|
||
|
fields: [
|
||
|
{
|
||
|
type: 'string',
|
||
|
name: 'realname',
|
||
|
},
|
||
|
{
|
||
|
type: 'string',
|
||
|
name: 'email',
|
||
|
},
|
||
|
{
|
||
|
type: 'string',
|
||
|
name: 'gender',
|
||
|
},
|
||
|
{
|
||
|
type: 'date',
|
||
|
name: 'birthday',
|
||
|
},
|
||
|
],
|
||
|
} as TableOptions;
|