Browse Source

Set default value as true for "IsActive" property in migration

pull/65/head
Engincan VESKE 5 years ago
parent
commit
7ab509cc21
  1. 2
      src/EventHub.EntityFrameworkCore/Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs

2
src/EventHub.EntityFrameworkCore/Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs

@ -288,7 +288,7 @@ namespace EventHub.Migrations
table: "AbpUsers",
type: "boolean",
nullable: false,
defaultValue: false);
defaultValue: true);
migrationBuilder.AlterColumn<DateTime>(
name: "CreationTime",

Loading…
Cancel
Save