add new models, change migration files, prepare to add all new tables from models
This commit is contained in:
24
internal/foundry/temp_models/db/ring.go
Normal file
24
internal/foundry/temp_models/db/ring.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package db
|
||||
|
||||
type Ring struct {
|
||||
ID uint
|
||||
|
||||
Enabled bool
|
||||
Effects int
|
||||
RingColors RingColors
|
||||
Subject Subject
|
||||
}
|
||||
|
||||
type RingColors struct {
|
||||
ID uint
|
||||
|
||||
Ring string
|
||||
Background string
|
||||
}
|
||||
|
||||
type Subject struct {
|
||||
ID uint
|
||||
|
||||
Scale int
|
||||
Texture string
|
||||
}
|
||||
Reference in New Issue
Block a user