import {Model} from 'pinia-orm' import {Num, Uid, Attr} from 'pinia-orm/dist/decorators' import { Historical } from '~/types/interfaces' export class MyProfile extends Model { static entity = 'accesses' @Uid() id!: number | string | null @Num(0, { notNullable: false }) activityYear!: number @Attr({}) historical!: Historical }