mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 13:39:24 +08:00
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import { DataTypes } from 'sequelize';
|
|
import { Field } from './field';
|
|
|
|
export class TextField extends Field {
|
|
get dataType() {
|
|
return DataTypes.TEXT;
|
|
}
|
|
}
|