Add missing comment to field (#229)

This commit is contained in:
Andrew Farries 2024-01-15 10:09:40 +00:00 committed by GitHub
parent 82b7937d77
commit 025a38f057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,6 +47,7 @@ type Table struct {
// The columns that make up the primary key
PrimaryKey []string `json:"primaryKey"`
// ForeignKeys is a map of all foreign keys defined on the table
ForeignKeys map[string]ForeignKey `json:"foreignKeys"`
}