chore: migrate to new category structure

This commit is contained in:
2025-07-18 11:08:00 +02:00
parent af233d9ee9
commit 0a6633316c
5 changed files with 267 additions and 2 deletions

View File

@@ -30,7 +30,14 @@ namespace QuotifyBE.Migrations
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<DateTime?>("CreatedAt")
.HasColumnType("timestamp with time zone");
b.Property<string>("Description")
.HasColumnType("text");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");