| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 | // <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 ProRestaurant.DBContexts;
namespace ProRestaurant.Migrations
{
    [DbContext(typeof(DBContext))]
    [Migration("20200630140752_Recreate Database")]
    partial class RecreateDatabase
    {
        protected override void BuildTargetModel(ModelBuilder modelBuilder)
        {
#pragma warning disable 612, 618
            modelBuilder
                .HasAnnotation("ProductVersion", "2.2.0-rtm-35687")
                .HasAnnotation("Relational:MaxIdentifierLength", 128)
                .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
            modelBuilder.Entity("ProRestaurant.Models.Accounts.DriverDetail", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<DateTime>("Created");
                    b.Property<bool>("IsDeleted");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<string>("Photo");
                    b.Property<string>("RegistrationNumber");
                    b.Property<int>("UserId");
                    b.HasKey("Id");
                    b.HasIndex("UserId")
                        .IsUnique();
                    b.ToTable("DriverDetails");
                });
            modelBuilder.Entity("ProRestaurant.Models.Accounts.User", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<string>("Cellphone");
                    b.Property<DateTime>("Created");
                    b.Property<string>("EmailAddress");
                    b.Property<string>("FirstName");
                    b.Property<bool>("IsDeleted");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<string>("Password");
                    b.Property<string>("Surname");
                    b.Property<int>("SystemRole");
                    b.HasKey("Id");
                    b.ToTable("Users");
                });
            modelBuilder.Entity("ProRestaurant.Models.Accounts.UserAddress", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<string>("City");
                    b.Property<string>("ComplexName");
                    b.Property<string>("Country");
                    b.Property<DateTime>("Created");
                    b.Property<string>("GoogleMapUrl");
                    b.Property<bool>("IsComplex");
                    b.Property<bool>("IsDefault");
                    b.Property<bool>("IsDeleted");
                    b.Property<decimal>("Latitude");
                    b.Property<decimal>("Longitude");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<string>("PostalCode");
                    b.Property<string>("Province");
                    b.Property<string>("StreetName");
                    b.Property<string>("StreetNumber");
                    b.Property<string>("Suburb");
                    b.Property<string>("UnitNumber");
                    b.Property<int>("UserId");
                    b.HasKey("Id");
                    b.HasIndex("UserId");
                    b.ToTable("UserAddresses");
                });
            modelBuilder.Entity("ProRestaurant.Models.Misc.Locations", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<string>("CategoryStore");
                    b.Property<string>("ImageStore");
                    b.HasKey("Id");
                    b.ToTable("Locations");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuCategory", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<DateTime>("Created");
                    b.Property<string>("Description");
                    b.Property<bool>("IsDeleted");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<int>("RestaurantId");
                    b.HasKey("Id");
                    b.HasIndex("RestaurantId");
                    b.ToTable("MenuCategories");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuItem", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<int>("CategoryId");
                    b.Property<DateTime>("Created");
                    b.Property<string>("Description");
                    b.Property<string>("Image");
                    b.Property<bool>("IsDeleted");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<string>("Name");
                    b.Property<decimal>("Price");
                    b.Property<int>("RestaurantId");
                    b.HasKey("Id");
                    b.HasIndex("RestaurantId");
                    b.ToTable("MenuItems");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuOption", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<int>("CategoryId");
                    b.Property<DateTime>("Created");
                    b.Property<string>("Description");
                    b.Property<bool>("IsBasePrice");
                    b.Property<bool>("IsDeleted");
                    b.Property<int>("MenuItemId");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<int>("OptionLimit");
                    b.Property<int>("OptionType");
                    b.Property<int>("Rank");
                    b.HasKey("Id");
                    b.HasIndex("CategoryId");
                    b.ToTable("MenuOptions");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuOptionItem", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<DateTime>("Created");
                    b.Property<string>("Description");
                    b.Property<bool>("IsDeleted");
                    b.Property<int?>("MenuOptionId");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<decimal>("Price");
                    b.Property<int>("Rank");
                    b.HasKey("Id");
                    b.HasIndex("MenuOptionId");
                    b.ToTable("MenuOptionItems");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.Restaurant", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<string>("Categories");
                    b.Property<string>("City");
                    b.Property<string>("Country");
                    b.Property<DateTime>("Created");
                    b.Property<decimal>("DeliveryFee");
                    b.Property<decimal>("DeliveryRadius");
                    b.Property<string>("DeliveryTime");
                    b.Property<string>("GoogleMapUrl");
                    b.Property<bool>("IsDeleted");
                    b.Property<decimal>("Latitude");
                    b.Property<string>("Logo");
                    b.Property<decimal>("Longitude");
                    b.Property<string>("MethodsOfPayment");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<string>("Name");
                    b.Property<string>("PostalCode");
                    b.Property<string>("Provice");
                    b.Property<string>("ShopNumber");
                    b.Property<string>("ShoppingCentre");
                    b.Property<string>("StreetName");
                    b.Property<string>("StreetNumber");
                    b.Property<string>("Suburb");
                    b.HasKey("Id");
                    b.ToTable("Restaurants");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.RestaurantCategory", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<string>("Description");
                    b.Property<string>("Image");
                    b.HasKey("Id");
                    b.ToTable("RestaurantCategories");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.RestaurantUser", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<DateTime>("Created");
                    b.Property<bool>("IsDeleted");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<int>("RestaurantId");
                    b.Property<int>("UserId");
                    b.HasKey("Id");
                    b.HasIndex("RestaurantId");
                    b.HasIndex("UserId");
                    b.ToTable("RestaurantUsers");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.TradingHours", b =>
                {
                    b.Property<int>("Id")
                        .ValueGeneratedOnAdd()
                        .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
                    b.Property<bool>("Closed");
                    b.Property<DateTime>("ClosingTime");
                    b.Property<DateTime>("Created");
                    b.Property<string>("Description");
                    b.Property<bool>("IsDeleted");
                    b.Property<DateTime>("Modified");
                    b.Property<string>("ModifiedBy");
                    b.Property<bool>("Opened24H");
                    b.Property<DateTime>("OpeningTime");
                    b.Property<int>("RestaurantId");
                    b.HasKey("Id");
                    b.HasIndex("RestaurantId");
                    b.ToTable("TradingHours");
                });
            modelBuilder.Entity("ProRestaurant.Models.Accounts.DriverDetail", b =>
                {
                    b.HasOne("ProRestaurant.Models.Accounts.User", "User")
                        .WithOne("DriverDetails")
                        .HasForeignKey("ProRestaurant.Models.Accounts.DriverDetail", "UserId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
            modelBuilder.Entity("ProRestaurant.Models.Accounts.UserAddress", b =>
                {
                    b.HasOne("ProRestaurant.Models.Accounts.User", "User")
                        .WithMany("Addresses")
                        .HasForeignKey("UserId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuCategory", b =>
                {
                    b.HasOne("ProRestaurant.Models.Restaurants.Restaurant", "Restaurant")
                        .WithMany()
                        .HasForeignKey("RestaurantId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuItem", b =>
                {
                    b.HasOne("ProRestaurant.Models.Restaurants.Restaurant", "Restaurant")
                        .WithMany()
                        .HasForeignKey("RestaurantId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuOption", b =>
                {
                    b.HasOne("ProRestaurant.Models.Restaurants.MenuCategory", "Category")
                        .WithMany("Options")
                        .HasForeignKey("CategoryId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.MenuOptionItem", b =>
                {
                    b.HasOne("ProRestaurant.Models.Restaurants.MenuOption", "MenuOption")
                        .WithMany("Options")
                        .HasForeignKey("MenuOptionId");
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.RestaurantUser", b =>
                {
                    b.HasOne("ProRestaurant.Models.Restaurants.Restaurant", "Restaurant")
                        .WithMany("Users")
                        .HasForeignKey("RestaurantId")
                        .OnDelete(DeleteBehavior.Cascade);
                    b.HasOne("ProRestaurant.Models.Accounts.User", "User")
                        .WithMany()
                        .HasForeignKey("UserId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
            modelBuilder.Entity("ProRestaurant.Models.Restaurants.TradingHours", b =>
                {
                    b.HasOne("ProRestaurant.Models.Restaurants.Restaurant", "Restaurant")
                        .WithMany("TradingHours")
                        .HasForeignKey("RestaurantId")
                        .OnDelete(DeleteBehavior.Cascade);
                });
#pragma warning restore 612, 618
        }
    }
}
 |