Changed project structure

This commit is contained in:
2025-05-11 20:43:56 +03:30
parent 8be6290635
commit 3e7f6b92d3
6 changed files with 4 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
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"`
}