tachybase_todo/packages/database-next/src/fields/string-field.ts
2021-10-16 10:53:09 +08:00

9 lines
168 B
TypeScript

import { DataTypes } from 'sequelize';
import { Field } from './field';
export class StringField extends Field {
get dataType() {
return DataTypes.STRING;
}
}