sqlboiler/bdb/table.go

13 lines
172 B
Go
Raw Normal View History

package bdb
// Table metadata from the database schema.
type Table struct {
Name string
Columns []Column
PKey *PrimaryKey
FKeys []ForeignKey
IsJoinTable bool
}