Define a string type
import { Model } from 'pinia-orm'class User extends Model { static entity = 'users' static fields () { return { id: this.number(0), name: this.string('') } }}
import { Model, Num, Str } from 'pinia-orm'class User extends Model { static entity = 'users' @Num(0) id!: number @Str('') name!: string}
function string(value: string | null): String