Skip to content

Commit 9c2dbde

Browse files
committed
Removed migration while debugging. Added password policies
1 parent fcbec01 commit 9c2dbde

15 files changed

+66
-654
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using Microsoft.AspNetCore.Identity;
2+
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
3+
using Microsoft.EntityFrameworkCore;
4+
5+
namespace ShowcaseAPI.Data
6+
{
7+
public class ApplicationDbContext : IdentityDbContext<IdentityUser>
8+
{
9+
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) { }
10+
11+
protected override void OnModelCreating(ModelBuilder builder)
12+
{
13+
base.OnModelCreating(builder);
14+
}
15+
}
16+
}

ShowcaseProject/ShowcaseAPI/Data/DataContext.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

ShowcaseProject/ShowcaseAPI/Migrations/20250204130454_Init.Designer.cs

Lines changed: 0 additions & 279 deletions
This file was deleted.

ShowcaseProject/ShowcaseAPI/Migrations/20250204150219_InitialCreate.cs

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)