diff --git a/src/Property.ts b/src/Property.ts index 58ff0089..31b73fda 100644 --- a/src/Property.ts +++ b/src/Property.ts @@ -15,7 +15,7 @@ export class Property extends BaseProperty { } public isEditable(): boolean { - return !this.isId() + return !this.column.isGenerated && !this.column.isCreateDate && !this.column.isUpdateDate }