{
    table: 'users',
    fields: {
        id: {
            type: 'DataTypes.STRING',
            allowNull: false,
            autoIncrement: false,
            comment: null,
            primaryKey: true,
        },
        name: {
            type: 'DataTypes.TEXT',
            allowNull: true,
            autoIncrement: false,
            comment: null,
        },
        value: {
            type: 'DataTypes.FLOAT',
            allowNull: true,
            autoIncrement: false,
            comment: null,
        },
    },
    options: {
        tableName: 'users',
    },
}