10 lines
411 B
Go
10 lines
411 B
Go
package models
|
|
|
|
type Post struct {
|
|
ID string `json:"id" gorm:"primaryKey"`
|
|
Url string `json:"url"`
|
|
AccountID string // Foreign key field (must match Account.AccId)
|
|
Account Account `json:"account" gorm:"foreignKey:AccountID;references:AccId"`
|
|
Attachments []MediaAttachment `json:"media_attachments" gorm:"foreignKey:PostID;references:ID"`
|
|
}
|