add new models, change migration files, prepare to add all new tables from models
This commit is contained in:
38
internal/foundry/temp_models/db/world.go
Normal file
38
internal/foundry/temp_models/db/world.go
Normal file
@@ -0,0 +1,38 @@
|
||||
package db
|
||||
|
||||
import "time"
|
||||
|
||||
type World struct {
|
||||
ID string
|
||||
|
||||
Socket bool
|
||||
Protected bool
|
||||
Exclusive bool
|
||||
PersistentStorage bool
|
||||
Locked bool
|
||||
Owned bool
|
||||
HasStorage bool
|
||||
Playtime int
|
||||
Availability int
|
||||
NextSession time.Time
|
||||
Title string
|
||||
Description string
|
||||
Version string
|
||||
System string
|
||||
Background string
|
||||
JoinTheme string
|
||||
CoreVersion string
|
||||
SystemVersion string
|
||||
LastPlayed string
|
||||
Tags []string
|
||||
Scripts []string
|
||||
Esmodules []string
|
||||
Compatibility Compatibility
|
||||
Relationships Relationships
|
||||
Authors []Author
|
||||
Media []Media
|
||||
Styles []Style
|
||||
Languages []Language
|
||||
Packs []Pack
|
||||
PackFolders []Folder
|
||||
}
|
||||
Reference in New Issue
Block a user