mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
feat(dir): ✨ default software abp scheme support to false
This commit is contained in:
parent
4f014332c6
commit
3c98c6a67a
1 changed files with 2 additions and 0 deletions
|
|
@ -20,6 +20,8 @@ public virtual void Configure(EntityTypeBuilder<Software> builder)
|
|||
{
|
||||
builder.HasIndex(s => s.Name)
|
||||
.IsUnique();
|
||||
builder.Property(s => s.SupportsAbpUrlScheme)
|
||||
.HasDefaultValue(false);
|
||||
builder.HasDataJsonFile<Software>();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue