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

This commit is contained in:
me@rodrigorodriguez.com 2024-10-17 14:45:30 -03:00
parent caf1601567
commit 36f7a7fbd1

View file

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