api/app/models/colle_attachment.ts
2025-07-23 00:19:09 +02:00

12 lines
No EOL
239 B
TypeScript

import { BaseModel, column } from '@adonisjs/lucid/orm'
export default class ColleAttachment extends BaseModel {
@column({ isPrimary: true })
declare id: number
@column()
declare name: string
@column()
declare path: string
}