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