Refactored to use postgres for production and sqlite for development

This commit is contained in:
Christopher Sanden
2026-03-27 19:13:17 +01:00
committed by Chris
parent b837e1aad2
commit 416d668294
17 changed files with 2218 additions and 38 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.EntityFrameworkCore;
namespace Example.Data;
public sealed class SqliteApplicationDbContext : ApplicationDbContext
{
public SqliteApplicationDbContext(DbContextOptions<SqliteApplicationDbContext> options)
: base(options)
{
}
}