Changed database provider to Postgres since it handle UUID/GUID correctly

This commit is contained in:
Jonathan Bourdon
2024-07-18 00:03:19 -04:00
parent 769586cc15
commit a8b7860fd8
26 changed files with 107 additions and 355 deletions

View File

@@ -3,8 +3,8 @@ using System;
using Hutopy.Web.Messages.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
@@ -18,34 +18,34 @@ namespace Hutopy.Web.Messages.Migrations
#pragma warning disable 612, 618
modelBuilder
.HasDefaultSchema("Messaging")
.HasAnnotation("ProductVersion", "8.0.3")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
.HasAnnotation("ProductVersion", "8.0.4")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
modelBuilder.Entity("Hutopy.Web.Messages.Data.Message", b =>
{
b.Property<Guid>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("uniqueidentifier");
.HasColumnType("uuid");
b.Property<DateTime>("CreatedAt")
b.Property<DateTimeOffset>("CreatedAt")
.ValueGeneratedOnAdd()
.HasColumnType("datetime2")
.HasColumnType("timestamp with time zone")
.HasDefaultValueSql("CURRENT_TIMESTAMP");
b.Property<Guid>("CreatedBy")
.HasColumnType("uniqueidentifier");
.HasColumnType("uuid");
b.Property<Guid>("ParentId")
.HasColumnType("uniqueidentifier");
.HasColumnType("uuid");
b.Property<Guid>("SubjectId")
.HasColumnType("uniqueidentifier");
.HasColumnType("uuid");
b.Property<string>("Value")
.IsRequired()
.HasColumnType("nvarchar(max)");
.HasColumnType("text");
b.HasKey("Id");