11 lines
254 B
Go
11 lines
254 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Post struct {
|
|
gorm.Model // includes ID, CreatedAt, UpdatedAt, DeletedAt
|
|
Title string `gorm:"not null"`
|
|
Content string `gorm:"type:text; not null"`
|
|
AuthorID uint // foreign key to User
|
|
}
|