Index: iknow-api/Data/AppDbContext.cs
===================================================================
--- iknow-api/Data/AppDbContext.cs	(revision 618be76765be90ceccc8ac3fb0758d602ca2f998)
+++ iknow-api/Data/AppDbContext.cs	(revision 618be76765be90ceccc8ac3fb0758d602ca2f998)
@@ -0,0 +1,10 @@
+using Microsoft.EntityFrameworkCore;
+using iknow_api.Models;
+
+public class AppDbContext : DbContext
+{
+    public AppDbContext(DbContextOptions<AppDbContext> options)
+        : base(options) { }
+
+    public DbSet<Users> Users { get; set; }
+}
