20 lines
376 B
Go
20 lines
376 B
Go
package models
|
|
|
|
type PostReference struct {
|
|
PostID string `gorm:"primaryKey"`
|
|
SourceID string `gorm:"primaryKey"`
|
|
URL string `gorm:"primaryKey"`
|
|
PostReferenceConfig
|
|
}
|
|
|
|
type PostReferenceConfig struct {
|
|
SourcePostID string
|
|
FullFileURL string
|
|
PreviewFileURL string
|
|
SampleFileURL string
|
|
}
|
|
|
|
func (PostReference) TableName() string {
|
|
return "PostReference"
|
|
}
|