0
mdframe created
Did I miss something regarding the latest RAD tool updates regarding the standard added fields:
`CreationTime = table.Column<DateTime>(nullable: false),
CreatorUserId = table.Column<long>(nullable: true),
LastModificationTime = table.Column<DateTime>(nullable: true),
LastModifierUserId = table.Column<long>(nullable: true),
IsDeleted = table.Column<bool>(nullable: false),
DeleterUserId = table.Column<long>(nullable: true),
DeletionTime = table.Column<DateTime>(nullable: true)`
Up until this release these fields were always added to my Migrations Create Table entry however the latest release is not adding these to the create table. Did I miss something in the latest RAD updates?
Thanks.