summaryrefslogtreecommitdiff
path: root/Models
diff options
context:
space:
mode:
Diffstat (limited to 'Models')
-rw-r--r--Models/ApplicationDbContext.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Models/ApplicationDbContext.cs b/Models/ApplicationDbContext.cs
new file mode 100644
index 0000000..902237d
--- /dev/null
+++ b/Models/ApplicationDbContext.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore;
+
+namespace BackendPIA.Models {
+ public class ApplicationDbContext : IdentityDbContext {
+ public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options) {
+ }
+ }
+}