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

This commit is contained in:
me@rodrigorodriguez.com 2024-10-17 14:52:48 -03:00
parent 02a32ed9d8
commit de2afefad1

View file

@ -2963,7 +2963,6 @@ export class SystemKeywords {
// If the column is named 'id' or 'Id', set it as the primary key // If the column is named 'id' or 'Id', set it as the primary key
if (col.toLowerCase() === 'id') { if (col.toLowerCase() === 'id') {
schema[col].primaryKey = true; schema[col].primaryKey = true;
schema[col].autoIncrement = true; // Optional: auto-increment for primary key
} }
}); });