// // Code generated by go-jet DO NOT EDIT. // // WARNING: Changes to this file may cause incorrect behavior // and will be lost if the code is regenerated // package model import ( "backend/pkg/pg" "time" ) type MediaResources struct { ID int64 `sql:"primary_key" json:"id"` MediaID int64 `json:"media_id"` Type pg.MediaType `json:"type"` Source *string `json:"source"` Size int64 `json:"size"` Publish bool `json:"publish"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }