using Microsoft.EntityFrameworkCore; using Seasoned.Backend.Models; namespace Seasoned.Backend.Data; public class ApplicationDbContext : DbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } public DbSet Recipes { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.HasPostgresExtension("vector"); } }