diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index e553d525..1afcdfb6 100644 --- a/packages/basic.gblib/services/SystemKeywords.ts +++ b/packages/basic.gblib/services/SystemKeywords.ts @@ -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 } });