new migration
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 10s

This commit is contained in:
2026-03-20 20:02:51 -05:00
parent ce701cd43d
commit 21fad5f698
3 changed files with 110 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
@@ -28,6 +29,9 @@ namespace agologum_api.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<DateTime>("CreatedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("Email")
.IsRequired()
.HasColumnType("text");
@@ -40,6 +44,10 @@ namespace agologum_api.Migrations
.IsRequired()
.HasColumnType("text");
b.Property<string>("Role")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("Users");