16 lines
195 B
Go
16 lines
195 B
Go
package models
|
|
|
|
var Entities = []any{
|
|
&Post{}, &Author{},
|
|
}
|
|
|
|
type Post struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Text string
|
|
}
|
|
|
|
type Author struct {
|
|
Id uint `gorm:"primaryKey"`
|
|
Name string
|
|
}
|