diff --git a/Glense.Server/.dockerignore b/Glense.Server/.dockerignore new file mode 100644 index 0000000..2062a23 --- /dev/null +++ b/Glense.Server/.dockerignore @@ -0,0 +1,7 @@ +DonationService/ +bin/ +obj/ +*.md +.env +.git +.gitignore diff --git a/Glense.Server/ApplicationDbContext.cs b/Glense.Server/ApplicationDbContext.cs deleted file mode 100644 index edf7d62..0000000 --- a/Glense.Server/ApplicationDbContext.cs +++ /dev/null @@ -1,101 +0,0 @@ -using Microsoft.AspNetCore.Connections; -using Microsoft.EntityFrameworkCore; - -namespace Glense.Server -{ - public class ApplicationDbContext : DbContext - { - public DbSet Categories { get; set; } - public DbSet Comments { get; set; } - public DbSet CommentLikes { get; set; } - public DbSet Conversations { get; set; } - public DbSet Donations { get; set; } - public DbSet Messages { get; set; } - public DbSet Subscriptions { get; set; } - public DbSet Users { get; set; } - public DbSet