This commit is contained in:
jdl
2026-06-25 13:21:19 +02:00
parent 9f4c86f39f
commit ad59b98aef
4 changed files with 34 additions and 29 deletions

View File

@@ -10,13 +10,14 @@ type schema struct {
}
type table struct {
driver string //
Name string // Name in SQL
Type string // Go type
NoInsert bool
NoUpdate bool
NoDelete bool
Columns []*column
driver string //
Name string // Name in SQL
Type string // Go type
LowerType string // Go type, lowercase.
NoInsert bool
NoUpdate bool
NoDelete bool
Columns []*column
}
type column struct {