new(core.gbapp): LLM alerts for data.

This commit is contained in:
me@rodrigorodriguez.com 2024-10-17 14:58:29 -03:00
parent de2afefad1
commit 02cecf6faa

View file

@ -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;
}
});