SES-65 #5

Merged
s426134 merged 5 commits from SES-65 into master 2020-12-03 18:36:39 +01:00
Showing only changes of commit d59c20bd0b - Show all commits

View File

@ -20,30 +20,30 @@ namespace SessionCompanion.Database
public virtual DbSet<User> Users { get; set; }
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { }
}
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
builder.Entity<User>().HasData(
new
{
Id = 1,
Nickname = "Morwiec",
Password = "123"
},
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
builder.Entity<User>().HasData(
new
{
Id = 2,
Nickname = "Cichoklepiec",
Id = 1,
Nickname = "Morwiec",
Password = "123"
},
new
{
Id = 3,
Nickname = "Ruletka",
Password = "123"
}
);
new
{
Id = 2,
Nickname = "Cichoklepiec",
Password = "123"
},
new
{
Id = 3,
Nickname = "Ruletka",
Password = "123"
}
);
}
}
}