Skip to content

Commit

Permalink
new(core.gbapp): LLM alerts for data.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Oct 17, 2024
1 parent de2afef commit 02cecf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic.gblib/services/SystemKeywords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2961,7 +2961,7 @@ export class SystemKeywords {
};

// If the column is named 'id' or 'Id', set it as the primary key
if (col.toLowerCase() === 'id') {
if (col.toLowerCase() === 'id' || col.toLowerCase() === 'internal_id') {
schema[col].primaryKey = true;
}
});
Expand Down

0 comments on commit 02cecf6

Please sign in to comment.