migration
This commit is contained in:
@@ -12,8 +12,8 @@ using Webshop.Infrastructure.Data;
|
|||||||
namespace Webshop.Infrastructure.Migrations
|
namespace Webshop.Infrastructure.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(ApplicationDbContext))]
|
[DbContext(typeof(ApplicationDbContext))]
|
||||||
[Migration("20250731144311_addOrder")]
|
[Migration("20250801073120_AddHouseNumberAndTypeToAddress")]
|
||||||
partial class addOrder
|
partial class AddHouseNumberAndTypeToAddress
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
@@ -163,10 +163,6 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
.ValueGeneratedOnAdd()
|
.ValueGeneratedOnAdd()
|
||||||
.HasColumnType("uuid");
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
b.Property<string>("AddressType")
|
|
||||||
.HasMaxLength(50)
|
|
||||||
.HasColumnType("character varying(50)");
|
|
||||||
|
|
||||||
b.Property<string>("City")
|
b.Property<string>("City")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(100)
|
.HasMaxLength(100)
|
||||||
@@ -189,6 +185,10 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
.HasMaxLength(100)
|
.HasMaxLength(100)
|
||||||
.HasColumnType("character varying(100)");
|
.HasColumnType("character varying(100)");
|
||||||
|
|
||||||
|
b.Property<string>("HouseNumber")
|
||||||
|
.HasMaxLength(50)
|
||||||
|
.HasColumnType("character varying(50)");
|
||||||
|
|
||||||
b.Property<string>("LastName")
|
b.Property<string>("LastName")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(100)
|
.HasMaxLength(100)
|
||||||
@@ -208,9 +208,8 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
.HasMaxLength(255)
|
.HasMaxLength(255)
|
||||||
.HasColumnType("character varying(255)");
|
.HasColumnType("character varying(255)");
|
||||||
|
|
||||||
b.Property<string>("Street2")
|
b.Property<int>("Type")
|
||||||
.HasMaxLength(255)
|
.HasColumnType("integer");
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||||||
namespace Webshop.Infrastructure.Migrations
|
namespace Webshop.Infrastructure.Migrations
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public partial class addOrder : Migration
|
public partial class AddHouseNumberAndTypeToAddress : Migration
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Up(MigrationBuilder migrationBuilder)
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
@@ -311,13 +311,13 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
{
|
{
|
||||||
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
||||||
CustomerId = table.Column<Guid>(type: "uuid", nullable: true),
|
CustomerId = table.Column<Guid>(type: "uuid", nullable: true),
|
||||||
AddressType = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
||||||
Street = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: false),
|
Street = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: false),
|
||||||
Street2 = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
HouseNumber = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
||||||
City = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
City = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
||||||
State = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
||||||
PostalCode = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
PostalCode = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
||||||
Country = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
Country = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
||||||
|
Type = table.Column<int>(type: "integer", nullable: false),
|
||||||
|
State = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
||||||
CompanyName = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
CompanyName = table.Column<string>(type: "character varying(255)", maxLength: 255, nullable: true),
|
||||||
FirstName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
FirstName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
||||||
LastName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false)
|
LastName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false)
|
||||||
@@ -160,10 +160,6 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
.ValueGeneratedOnAdd()
|
.ValueGeneratedOnAdd()
|
||||||
.HasColumnType("uuid");
|
.HasColumnType("uuid");
|
||||||
|
|
||||||
b.Property<string>("AddressType")
|
|
||||||
.HasMaxLength(50)
|
|
||||||
.HasColumnType("character varying(50)");
|
|
||||||
|
|
||||||
b.Property<string>("City")
|
b.Property<string>("City")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(100)
|
.HasMaxLength(100)
|
||||||
@@ -186,6 +182,10 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
.HasMaxLength(100)
|
.HasMaxLength(100)
|
||||||
.HasColumnType("character varying(100)");
|
.HasColumnType("character varying(100)");
|
||||||
|
|
||||||
|
b.Property<string>("HouseNumber")
|
||||||
|
.HasMaxLength(50)
|
||||||
|
.HasColumnType("character varying(50)");
|
||||||
|
|
||||||
b.Property<string>("LastName")
|
b.Property<string>("LastName")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(100)
|
.HasMaxLength(100)
|
||||||
@@ -205,9 +205,8 @@ namespace Webshop.Infrastructure.Migrations
|
|||||||
.HasMaxLength(255)
|
.HasMaxLength(255)
|
||||||
.HasColumnType("character varying(255)");
|
.HasColumnType("character varying(255)");
|
||||||
|
|
||||||
b.Property<string>("Street2")
|
b.Property<int>("Type")
|
||||||
.HasMaxLength(255)
|
.HasColumnType("integer");
|
||||||
.HasColumnType("character varying(255)");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
b.HasKey("Id");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user