mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Add alias and display name to document people.
This commit is contained in:
@@ -398,6 +398,10 @@ namespace Cicm.Database.Migrations
|
||||
{
|
||||
b.Property<int>("Id").ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<string>("Alias");
|
||||
|
||||
b.Property<string>("DisplayName");
|
||||
|
||||
b.Property<string>("Name").IsRequired();
|
||||
|
||||
b.Property<int?>("PersonId");
|
||||
@@ -406,6 +410,10 @@ namespace Cicm.Database.Migrations
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.HasIndex("Alias");
|
||||
|
||||
b.HasIndex("DisplayName");
|
||||
|
||||
b.HasIndex("Name");
|
||||
|
||||
b.HasIndex("PersonId").IsUnique();
|
||||
|
||||
Reference in New Issue
Block a user