trigger build#14
Conversation
|
The latest updates on your projects. Learn more about Boreal.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 5856b12911
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| data_type: | ||
| elementType: String | ||
| elementNullable: false | ||
| required: true |
There was a problem hiding this comment.
Mark
sup as optional in the migration
The new model field is declared as optional (sup?: string[]), and the existing ingest mapping path (mapToAircraftTrackingData) does not populate sup at all, so many records will omit it. Adding this column as required: true (here and again for the processed table) can cause inserts/migration application to fail or force invalid defaults whenever sup is absent. This delta should make sup non-required (or provide a safe default and update the mapper) to match current runtime payloads.
Useful? React with 👍 / 👎.
No description provided.