dialect/sql/schema: add table schema (#3818)

This commit is contained in:
Ariel Mashraki
2023-11-11 23:28:22 +02:00
committed by GitHub
parent c2ff3ff3bc
commit 50938a51c6

View File

@@ -30,6 +30,7 @@ const (
// Table schema definition for SQL dialects.
type Table struct {
Name string
Schema string
Columns []*Column
columns map[string]*Column
Indexes []*Index