60f6080e73
- Break dbdrivers into bdb and drivers - Break each type in dbdrivers into it's own file set.
12 lines
172 B
Go
12 lines
172 B
Go
package bdb
|
|
|
|
// Table metadata from the database schema.
|
|
type Table struct {
|
|
Name string
|
|
Columns []Column
|
|
|
|
PKey *PrimaryKey
|
|
FKeys []ForeignKey
|
|
|
|
IsJoinTable bool
|
|
}
|