_template-service/Migrations/Test236DBContextModelSnapshot.cs
adam fc574d5002
Some checks failed
gitea.arg.rip/_template-service/pipeline/head There was a failure building this commit
it's going to be a dotnet service, let's be real.
and you're getting a database, if you don't like it remove it.
2024-12-13 14:30:08 -05:00

42 lines
1.2 KiB
C#

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
using $REPO_NAME;
#nullable disable
namespace $REPO_NAME.Migrations
{
[DbContext(typeof($REPO_NAMEDBContext))]
partial class $REPO_NAMEDBContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "9.0.0")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
modelBuilder.Entity("$REPO_NAME.Models.GreetCounter", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("uuid");
b.Property<int>("Amount")
.HasColumnType("integer");
b.HasKey("Id");
b.ToTable("Greets");
});
#pragma warning restore 612, 618
}
}
}