forked from adam/discord-bot-shtik
Adam R Grey
88ca468708
Some checks failed
gitea/vassago/pipeline/head There was a failure building this commit
22 lines
870 B
C#
22 lines
870 B
C#
namespace vassago.Models;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class ChattingContext : DbContext
|
|
{
|
|
public DbSet<Attachment> Attachments { get; set; }
|
|
public DbSet<Channel> Channels { get; set; }
|
|
//public DbSet<Emoji> Emoji {get;set;}
|
|
public DbSet<Message> Messages { get; set; }
|
|
public DbSet<Account> Accounts { get; set; }
|
|
public DbSet<User> Users { get; set; }
|
|
|
|
public ChattingContext(DbContextOptions<ChattingContext> options) : base(options) { }
|
|
public ChattingContext() : base() { }
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
optionsBuilder.UseNpgsql(Shared.DBConnectionString)
|
|
.EnableSensitiveDataLogging(true); //who the fuck is looking at log output but not allowed to see it? this should be on by default.
|
|
}
|
|
} |