Files
web_server/backend/models/post.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"`
}