Skip to content

Commit

Permalink
Merge pull request #3 from NisanurBulut/hotfix-migration
Browse files Browse the repository at this point in the history
fixed kullanici entity migration config
  • Loading branch information
NisanurBulut authored May 22, 2021
2 parents ebdc27b + d53c880 commit 8460992
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class KullaniciConfiguration : IEntityTypeConfiguration<KullaniciEntity>
{
public void Configure(EntityTypeBuilder<KullaniciEntity> builder)
{
builder.ToTable("tDuyuru", "dbo");
builder.ToTable("tKullanici", "dbo");
builder.HasKey(a => a.Id);
builder.Property(a => a.Ad).IsRequired().HasMaxLength(50);
builder.Property(a => a.UnvanId).IsRequired();
Expand Down

0 comments on commit 8460992

Please sign in to comment.