15 lines
208 B
Go
15 lines
208 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type ParentSection struct {
|
|
gorm.Model
|
|
Name string
|
|
}
|
|
|
|
type Section struct {
|
|
gorm.Model
|
|
Name string
|
|
ParentSectionID uint
|
|
ParentSection ParentSection
|
|
}
|