Add alias and display name to people.

This commit is contained in:
2019-06-30 21:42:34 +01:00
parent e40de9facd
commit 72bcb54032
11 changed files with 8336 additions and 15 deletions

View File

@@ -4958,12 +4958,16 @@ namespace Cicm.Database.Migrations
{
b.Property<int>("Id").ValueGeneratedOnAdd();
b.Property<string>("Alias");
b.Property<DateTime>("BirthDate");
b.Property<short?>("CountryOfBirthId");
b.Property<DateTime?>("DeathDate");
b.Property<string>("DisplayName");
b.Property<int?>("DocumentPersonId");
b.Property<string>("Facebook");
@@ -4980,12 +4984,16 @@ namespace Cicm.Database.Migrations
b.HasKey("Id");
b.HasIndex("Alias");
b.HasIndex("BirthDate");
b.HasIndex("CountryOfBirthId");
b.HasIndex("DeathDate");
b.HasIndex("DisplayName");
b.HasIndex("Facebook");
b.HasIndex("Name");