Files
WhiteLagoon/WhiteLagoon.Infrastructure/Migrations/20230807153245_addBookingToDb.Designer.cs
2025-05-20 11:46:50 -04:00

636 lines
23 KiB
C#

// <auto-generated />
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using WhiteLagoon.Infrastructure.Data;
#nullable disable
namespace WhiteLagoon.Infrastructure.Migrations
{
[DbContext(typeof(ApplicationDbContext))]
[Migration("20230807153245_addBookingToDb")]
partial class addBookingToDb
{
/// <inheritdoc />
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "8.0.0-preview.6.23329.4")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
{
b.Property<string>("Id")
.HasColumnType("nvarchar(450)");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("nvarchar(max)");
b.Property<string>("Name")
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.Property<string>("NormalizedName")
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.HasKey("Id");
b.HasIndex("NormalizedName")
.IsUnique()
.HasDatabaseName("RoleNameIndex")
.HasFilter("[NormalizedName] IS NOT NULL");
b.ToTable("AspNetRoles", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("nvarchar(max)");
b.Property<string>("ClaimValue")
.HasColumnType("nvarchar(max)");
b.Property<string>("RoleId")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.HasKey("Id");
b.HasIndex("RoleId");
b.ToTable("AspNetRoleClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("nvarchar(max)");
b.Property<string>("ClaimValue")
.HasColumnType("nvarchar(max)");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.HasKey("Id");
b.HasIndex("UserId");
b.ToTable("AspNetUserClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.Property<string>("LoginProvider")
.HasColumnType("nvarchar(450)");
b.Property<string>("ProviderKey")
.HasColumnType("nvarchar(450)");
b.Property<string>("ProviderDisplayName")
.HasColumnType("nvarchar(max)");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.HasKey("LoginProvider", "ProviderKey");
b.HasIndex("UserId");
b.ToTable("AspNetUserLogins", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("nvarchar(450)");
b.Property<string>("RoleId")
.HasColumnType("nvarchar(450)");
b.HasKey("UserId", "RoleId");
b.HasIndex("RoleId");
b.ToTable("AspNetUserRoles", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("nvarchar(450)");
b.Property<string>("LoginProvider")
.HasColumnType("nvarchar(450)");
b.Property<string>("Name")
.HasColumnType("nvarchar(450)");
b.Property<string>("Value")
.HasColumnType("nvarchar(max)");
b.HasKey("UserId", "LoginProvider", "Name");
b.ToTable("AspNetUserTokens", (string)null);
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.Amenity", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<int>("VillaId")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("VillaId");
b.ToTable("Amenities");
b.HasData(
new
{
Id = 1,
Name = "Private Pool",
VillaId = 1
},
new
{
Id = 2,
Name = "Microwave",
VillaId = 1
},
new
{
Id = 3,
Name = "Private Balcony",
VillaId = 1
},
new
{
Id = 4,
Name = "1 king bed and 1 sofa bed",
VillaId = 1
},
new
{
Id = 5,
Name = "Private Plunge Pool",
VillaId = 2
},
new
{
Id = 6,
Name = "Microwave and Mini Refrigerator",
VillaId = 2
},
new
{
Id = 7,
Name = "Private Balcony",
VillaId = 2
},
new
{
Id = 8,
Name = "king bed or 2 double beds",
VillaId = 2
},
new
{
Id = 9,
Name = "Private Pool",
VillaId = 3
},
new
{
Id = 10,
Name = "Jacuzzi",
VillaId = 3
},
new
{
Id = 11,
Name = "Private Balcony",
VillaId = 3
});
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.ApplicationUser", b =>
{
b.Property<string>("Id")
.HasColumnType("nvarchar(450)");
b.Property<int>("AccessFailedCount")
.HasColumnType("int");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("CreatedAt")
.HasColumnType("datetime2");
b.Property<string>("Email")
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.Property<bool>("EmailConfirmed")
.HasColumnType("bit");
b.Property<bool>("LockoutEnabled")
.HasColumnType("bit");
b.Property<DateTimeOffset?>("LockoutEnd")
.HasColumnType("datetimeoffset");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("NormalizedEmail")
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.Property<string>("NormalizedUserName")
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.Property<string>("PasswordHash")
.HasColumnType("nvarchar(max)");
b.Property<string>("PhoneNumber")
.HasColumnType("nvarchar(max)");
b.Property<bool>("PhoneNumberConfirmed")
.HasColumnType("bit");
b.Property<string>("SecurityStamp")
.HasColumnType("nvarchar(max)");
b.Property<bool>("TwoFactorEnabled")
.HasColumnType("bit");
b.Property<string>("UserName")
.HasMaxLength(256)
.HasColumnType("nvarchar(256)");
b.HasKey("Id");
b.HasIndex("NormalizedEmail")
.HasDatabaseName("EmailIndex");
b.HasIndex("NormalizedUserName")
.IsUnique()
.HasDatabaseName("UserNameIndex")
.HasFilter("[NormalizedUserName] IS NOT NULL");
b.ToTable("AspNetUsers", (string)null);
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.Booking", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
b.Property<DateTime>("ActualCheckInDate")
.HasColumnType("datetime2");
b.Property<DateTime>("ActualCheckOutDate")
.HasColumnType("datetime2");
b.Property<DateTime>("BookingDate")
.HasColumnType("datetime2");
b.Property<DateOnly>("CheckInDate")
.HasColumnType("date");
b.Property<DateOnly>("CheckOutDate")
.HasColumnType("date");
b.Property<string>("Email")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsPaymentSuccessful")
.HasColumnType("bit");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<int>("Nights")
.HasColumnType("int");
b.Property<DateTime>("PaymentDate")
.HasColumnType("datetime2");
b.Property<string>("Phone")
.HasColumnType("nvarchar(max)");
b.Property<string>("Status")
.HasColumnType("nvarchar(max)");
b.Property<string>("StripePaymentIntentId")
.HasColumnType("nvarchar(max)");
b.Property<string>("StripeSessionId")
.HasColumnType("nvarchar(max)");
b.Property<double>("TotalCost")
.HasColumnType("float");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<int>("VillaId")
.HasColumnType("int");
b.Property<int>("VillaNumber")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("UserId");
b.HasIndex("VillaId");
b.ToTable("Bookings");
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.Villa", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("int");
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
b.Property<DateTime?>("Created_Date")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<string>("ImageUrl")
.HasColumnType("nvarchar(max)");
b.Property<string>("Name")
.IsRequired()
.HasMaxLength(50)
.HasColumnType("nvarchar(50)");
b.Property<int>("Occupancy")
.HasColumnType("int");
b.Property<double>("Price")
.HasColumnType("float");
b.Property<int>("Sqft")
.HasColumnType("int");
b.Property<DateTime?>("Updated_Date")
.HasColumnType("datetime2");
b.HasKey("Id");
b.ToTable("Villas");
b.HasData(
new
{
Id = 1,
Description = "Fusce 11 tincidunt maximus leo, sed scelerisque massa auctor sit amet. Donec ex mauris, hendrerit quis nibh ac, efficitur fringilla enim.",
ImageUrl = "https://placehold.co/600x400",
Name = "Royal Villa",
Occupancy = 4,
Price = 200.0,
Sqft = 550
},
new
{
Id = 2,
Description = "Fusce 11 tincidunt maximus leo, sed scelerisque massa auctor sit amet. Donec ex mauris, hendrerit quis nibh ac, efficitur fringilla enim.",
ImageUrl = "https://placehold.co/600x401",
Name = "Premium Pool Villa",
Occupancy = 4,
Price = 300.0,
Sqft = 550
},
new
{
Id = 3,
Description = "Fusce 11 tincidunt maximus leo, sed scelerisque massa auctor sit amet. Donec ex mauris, hendrerit quis nibh ac, efficitur fringilla enim.",
ImageUrl = "https://placehold.co/600x402",
Name = "Luxury Pool Villa",
Occupancy = 4,
Price = 400.0,
Sqft = 750
});
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.VillaNumber", b =>
{
b.Property<int>("Villa_Number")
.HasColumnType("int");
b.Property<string>("SpecialDetails")
.HasColumnType("nvarchar(max)");
b.Property<int>("VillaId")
.HasColumnType("int");
b.HasKey("Villa_Number");
b.HasIndex("VillaId");
b.ToTable("VillaNumbers");
b.HasData(
new
{
Villa_Number = 101,
VillaId = 1
},
new
{
Villa_Number = 102,
VillaId = 1
},
new
{
Villa_Number = 103,
VillaId = 1
},
new
{
Villa_Number = 104,
VillaId = 1
},
new
{
Villa_Number = 201,
VillaId = 2
},
new
{
Villa_Number = 202,
VillaId = 2
},
new
{
Villa_Number = 203,
VillaId = 2
},
new
{
Villa_Number = 301,
VillaId = 3
},
new
{
Villa_Number = 302,
VillaId = 3
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.HasOne("WhiteLagoon.Domain.Entities.ApplicationUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.HasOne("WhiteLagoon.Domain.Entities.ApplicationUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("WhiteLagoon.Domain.Entities.ApplicationUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.HasOne("WhiteLagoon.Domain.Entities.ApplicationUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.Amenity", b =>
{
b.HasOne("WhiteLagoon.Domain.Entities.Villa", "Villa")
.WithMany("VillaAmenity")
.HasForeignKey("VillaId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Villa");
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.Booking", b =>
{
b.HasOne("WhiteLagoon.Domain.Entities.ApplicationUser", "User")
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("WhiteLagoon.Domain.Entities.Villa", "Villa")
.WithMany()
.HasForeignKey("VillaId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("User");
b.Navigation("Villa");
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.VillaNumber", b =>
{
b.HasOne("WhiteLagoon.Domain.Entities.Villa", "Villa")
.WithMany()
.HasForeignKey("VillaId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Villa");
});
modelBuilder.Entity("WhiteLagoon.Domain.Entities.Villa", b =>
{
b.Navigation("VillaAmenity");
});
#pragma warning restore 612, 618
}
}
}