summaryrefslogtreecommitdiff
path: root/HyperBooruContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'HyperBooruContext.cs')
-rw-r--r--HyperBooruContext.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/HyperBooruContext.cs b/HyperBooruContext.cs
deleted file mode 100644
index 3a9aa0f..0000000
--- a/HyperBooruContext.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System.Text.Json;
-
-namespace HyperBooru;
-
-public class HyperBooruDbContext : DbContext {
- public DbSet<DbObject> Objects { get; set; }
- public DbSet<DbTagDefinition> TagDefinitions { get; set; }
- public DbSet<DbTag> Tags { get; set; }
- public DbSet<DbMedia> Media { get; set; }
- public DbSet<DbUploadedFile> UploadedFiles { get; set; }
-
- private IConfigService config;
-
- public HyperBooruDbContext(IConfigService config) =>
- this.config = config;
-
- protected override void OnConfiguring(DbContextOptionsBuilder options) {
- options.UseLazyLoadingProxies();
-
- var path = Path.Join(config.DataPath, "HyperBooru.db");
- options.UseSqlite($"Data Source = {config.DbPath}");
- }
-
- protected override void OnModelCreating(ModelBuilder modelBuilder) {
- modelBuilder.Entity<DbObject>().ToTable("Objects");
- modelBuilder.Entity<DbTagDefinition>().ToTable("TagDefinitions");
- modelBuilder.Entity<DbTag>().ToTable("Tags");
- modelBuilder.Entity<DbMedia>().ToTable("Media");
- modelBuilder.Entity<DbUploadedFile>().ToTable("UploadedFiles");
-
- modelBuilder.Entity<DbTagDefinition>().HasData(new DbTagDefinition[] {
- new() { ObjectId = -1, Source = TagSource.Internal, Name = "nsfw" },
- new() { ObjectId = -2, Source = TagSource.Internal, Name = "ingest" }
- });
- }
-} \ No newline at end of file