tenseleyflow/shithub / fe18381

Browse files

sqlc: cross-package WorkflowRun regen for trigger_event_id (S41b)

Same shared-schema-dir pattern as prior rounds — every package's
locally-generated WorkflowRun struct picks up the new field.
Captures the regeneration so 'sqlc generate' is idempotent.
Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
fe1838154b9a9a46ad470616d5d618cff704a7c9
Parents
bff8e3c
Tree
3c1150d

14 changed files

StatusFile+-
M internal/admin/sqlc/models.go 1 0
M internal/auth/policy/sqlc/models.go 1 0
M internal/checks/sqlc/models.go 1 0
M internal/issues/sqlc/models.go 1 0
M internal/meta/sqlc/models.go 1 0
M internal/notif/sqlc/models.go 1 0
M internal/orgs/sqlc/models.go 1 0
M internal/pulls/sqlc/models.go 1 0
M internal/ratelimit/sqlc/models.go 1 0
M internal/repos/sqlc/models.go 1 0
M internal/social/sqlc/models.go 1 0
M internal/users/sqlc/models.go 1 0
M internal/webhook/sqlc/models.go 1 0
M internal/worker/sqlc/models.go 1 0
internal/admin/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/auth/policy/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/checks/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/issues/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/meta/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/notif/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/orgs/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/pulls/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/ratelimit/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/repos/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/social/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/users/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/webhook/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {
internal/worker/sqlc/models.gomodified
@@ -2299,6 +2299,7 @@ type WorkflowRun struct {
22992299
 	Version          int32
23002300
 	CreatedAt        pgtype.Timestamptz
23012301
 	UpdatedAt        pgtype.Timestamptz
2302
+	TriggerEventID   string
23022303
 }
23032304
 
23042305
 type WorkflowRunner struct {