11 lines
249 B
Go
11 lines
249 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"`
|
|
Author string `gorm:"not null"`
|
|
}
|