schema: split 'column', 'index' and 'schema' into separate files from 'table'

This commit is contained in:
2026-03-15 15:45:16 -07:00
committed by ~wispem-wantex
parent 616304c7dd
commit 9c31266f59
4 changed files with 77 additions and 71 deletions

6
pkg/schema/schema.go Normal file
View File

@@ -0,0 +1,6 @@
package schema
type Schema struct {
Tables map[string]Table
Indexes map[string]Index
}