2024-03-29 01:29:14 +03:00
|
|
|
|
// <auto-generated />
|
|
|
|
|
using Manarah.App.Data;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
2024-05-06 09:54:49 +03:00
|
|
|
|
namespace Manarah.SqliteMigrations.Migrations
|
2024-03-29 01:29:14 +03:00
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(ManarahContext))]
|
2024-05-06 09:54:49 +03:00
|
|
|
|
[Migration("20240505211518_InitCreate")]
|
|
|
|
|
partial class InitCreate
|
2024-03-29 01:29:14 +03:00
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable 612, 618
|
2024-05-06 09:54:49 +03:00
|
|
|
|
modelBuilder.HasAnnotation("ProductVersion", "8.0.3");
|
2024-03-29 01:29:14 +03:00
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("Manarah.Domain.Server", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("IPAddress")
|
2024-05-06 09:54:49 +03:00
|
|
|
|
.HasColumnType("TEXT");
|
2024-03-29 01:29:14 +03:00
|
|
|
|
|
|
|
|
|
b.Property<string>("Description")
|
2024-05-06 09:54:49 +03:00
|
|
|
|
.HasColumnType("TEXT");
|
2024-03-29 01:29:14 +03:00
|
|
|
|
|
|
|
|
|
b.HasKey("IPAddress");
|
|
|
|
|
|
|
|
|
|
b.ToTable("Server", (string)null);
|
|
|
|
|
});
|
|
|
|
|
#pragma warning restore 612, 618
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|