feat(migrations): add ContextModelSnapshot for Payments entity

This commit is contained in:
Stevan Freeborn
2026-01-04 21:11:31 -06:00
parent 3e2e0b5690
commit 05686f193f
@@ -0,0 +1,44 @@
// <auto-generated />
using GroundsForSupport.Server.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable
namespace GroundsForSupport.Server.Migrations
{
[DbContext(typeof(Context))]
partial class ContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "10.0.1");
modelBuilder.Entity("GroundsForSupport.Server.Payments.Payment", b =>
{
b.Property<string>("Id")
.HasColumnType("TEXT");
b.Property<long>("Amount")
.HasColumnType("INTEGER");
b.Property<long>("CreatedAtUnix")
.HasColumnType("INTEGER");
b.Property<string>("Message")
.HasColumnType("TEXT");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("Payments");
});
#pragma warning restore 612, 618
}
}
}