From 025a38f0578d6ca47d368c67a96c5b79c1c1f41a Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Mon, 15 Jan 2024 10:09:40 +0000 Subject: [PATCH] Add missing comment to field (#229) --- pkg/schema/schema.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/schema/schema.go b/pkg/schema/schema.go index 4429f122..f88ae265 100644 --- a/pkg/schema/schema.go +++ b/pkg/schema/schema.go @@ -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"` }