package models import "github.com/uptrace/bun" type Image struct { bun.BaseModel `bun:"table:image"` Id int64 `bun:"id,pk,autoincrement"` Ext string `bun:"ext"` }