diff --git a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514095932_SecMigration.Designer.cs b/GiftShop/GiftShopDatabaseImplement/Migrations/20230514095932_SecMigration.Designer.cs deleted file mode 100644 index 48e6665..0000000 --- a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514095932_SecMigration.Designer.cs +++ /dev/null @@ -1,261 +0,0 @@ -// -using System; -using GiftShopDatabaseImplement; -using Microsoft.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore.Infrastructure; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Migrations; -using Microsoft.EntityFrameworkCore.Storage.ValueConversion; - -#nullable disable - -namespace GiftShopDatabaseImplement.Migrations -{ - [DbContext(typeof(GiftShopDatabase))] - [Migration("20230514095932_SecMigration")] - partial class SecMigration - { - /// - protected override void BuildTargetModel(ModelBuilder modelBuilder) - { -#pragma warning disable 612, 618 - modelBuilder - .HasAnnotation("ProductVersion", "7.0.4") - .HasAnnotation("Relational:MaxIdentifierLength", 128); - - SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Client", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int"); - - SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - - b.Property("ClientFIO") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Email") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Password") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.HasKey("Id"); - - b.ToTable("Clients"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Component", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int"); - - SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - - b.Property("ComponentName") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Cost") - .HasColumnType("float"); - - b.HasKey("Id"); - - b.ToTable("Components"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Gift", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int"); - - SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - - b.Property("GiftName") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Price") - .HasColumnType("float"); - - b.HasKey("Id"); - - b.ToTable("Gifts"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.GiftComponent", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int"); - - SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - - b.Property("ComponentId") - .HasColumnType("int"); - - b.Property("Count") - .HasColumnType("int"); - - b.Property("GiftId") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.HasIndex("ComponentId"); - - b.HasIndex("GiftId"); - - b.ToTable("GiftComponents"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Implementer", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int"); - - SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - - b.Property("ImplementerFIO") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Password") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("Qualification") - .HasColumnType("int"); - - b.Property("WorkExperience") - .HasColumnType("int"); - - b.HasKey("Id"); - - b.ToTable("Implementers"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Order", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("int"); - - SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); - - b.Property("ClientId") - .HasColumnType("int"); - - b.Property("Count") - .HasColumnType("int"); - - b.Property("DateCreate") - .HasColumnType("datetime2"); - - b.Property("DateImplement") - .HasColumnType("datetime2"); - - b.Property("GiftId") - .HasColumnType("int"); - - b.Property("GiftName") - .IsRequired() - .HasColumnType("nvarchar(max)"); - - b.Property("ImplementerId") - .HasColumnType("int"); - - b.Property("Status") - .HasColumnType("int"); - - b.Property("Sum") - .HasColumnType("float"); - - b.HasKey("Id"); - - b.HasIndex("ClientId"); - - b.HasIndex("GiftId"); - - b.HasIndex("ImplementerId"); - - b.ToTable("Orders"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.GiftComponent", b => - { - b.HasOne("GiftShopDatabaseImplement.Models.Component", "Component") - .WithMany("GiftComponents") - .HasForeignKey("ComponentId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("GiftShopDatabaseImplement.Models.Gift", "Gift") - .WithMany("Components") - .HasForeignKey("GiftId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Component"); - - b.Navigation("Gift"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Order", b => - { - b.HasOne("GiftShopDatabaseImplement.Models.Client", "Client") - .WithMany("Orders") - .HasForeignKey("ClientId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("GiftShopDatabaseImplement.Models.Gift", "Gift") - .WithMany("Orders") - .HasForeignKey("GiftId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("GiftShopDatabaseImplement.Models.Implementer", "Implementer") - .WithMany("Orders") - .HasForeignKey("ImplementerId"); - - b.Navigation("Client"); - - b.Navigation("Gift"); - - b.Navigation("Implementer"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Client", b => - { - b.Navigation("Orders"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Component", b => - { - b.Navigation("GiftComponents"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Gift", b => - { - b.Navigation("Components"); - - b.Navigation("Orders"); - }); - - modelBuilder.Entity("GiftShopDatabaseImplement.Models.Implementer", b => - { - b.Navigation("Orders"); - }); -#pragma warning restore 612, 618 - } - } -} diff --git a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514155217_ThirdMigration.cs b/GiftShop/GiftShopDatabaseImplement/Migrations/20230514155217_ThirdMigration.cs deleted file mode 100644 index 9ff5662..0000000 --- a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514155217_ThirdMigration.cs +++ /dev/null @@ -1,48 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -#nullable disable - -namespace GiftShopDatabaseImplement.Migrations -{ - /// - public partial class ThirdMigration : Migration - { - /// - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "Messages", - columns: table => new - { - MessageId = table.Column(type: "nvarchar(450)", nullable: false), - ClientId = table.Column(type: "int", nullable: true), - SenderName = table.Column(type: "nvarchar(max)", nullable: false), - DateDelivery = table.Column(type: "datetime2", nullable: false), - Subject = table.Column(type: "nvarchar(max)", nullable: false), - Body = table.Column(type: "nvarchar(max)", nullable: false) - }, - constraints: table => - { - table.PrimaryKey("PK_Messages", x => x.MessageId); - table.ForeignKey( - name: "FK_Messages_Clients_ClientId", - column: x => x.ClientId, - principalTable: "Clients", - principalColumn: "Id"); - }); - - migrationBuilder.CreateIndex( - name: "IX_Messages_ClientId", - table: "Messages", - column: "ClientId"); - } - - /// - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "Messages"); - } - } -} diff --git a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514155217_ThirdMigration.Designer.cs b/GiftShop/GiftShopDatabaseImplement/Migrations/20230515064632_SecMigration.Designer.cs similarity index 99% rename from GiftShop/GiftShopDatabaseImplement/Migrations/20230514155217_ThirdMigration.Designer.cs rename to GiftShop/GiftShopDatabaseImplement/Migrations/20230515064632_SecMigration.Designer.cs index 9339929..77e6053 100644 --- a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514155217_ThirdMigration.Designer.cs +++ b/GiftShop/GiftShopDatabaseImplement/Migrations/20230515064632_SecMigration.Designer.cs @@ -12,8 +12,8 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace GiftShopDatabaseImplement.Migrations { [DbContext(typeof(GiftShopDatabase))] - [Migration("20230514155217_ThirdMigration")] - partial class ThirdMigration + [Migration("20230515064632_SecMigration")] + partial class SecMigration { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) diff --git a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514095932_SecMigration.cs b/GiftShop/GiftShopDatabaseImplement/Migrations/20230515064632_SecMigration.cs similarity index 85% rename from GiftShop/GiftShopDatabaseImplement/Migrations/20230514095932_SecMigration.cs rename to GiftShop/GiftShopDatabaseImplement/Migrations/20230515064632_SecMigration.cs index 4aeb64e..b860920 100644 --- a/GiftShop/GiftShopDatabaseImplement/Migrations/20230514095932_SecMigration.cs +++ b/GiftShop/GiftShopDatabaseImplement/Migrations/20230515064632_SecMigration.cs @@ -70,6 +70,27 @@ namespace GiftShopDatabaseImplement.Migrations table.PrimaryKey("PK_Implementers", x => x.Id); }); + migrationBuilder.CreateTable( + name: "Messages", + columns: table => new + { + MessageId = table.Column(type: "nvarchar(450)", nullable: false), + ClientId = table.Column(type: "int", nullable: true), + SenderName = table.Column(type: "nvarchar(max)", nullable: false), + DateDelivery = table.Column(type: "datetime2", nullable: false), + Subject = table.Column(type: "nvarchar(max)", nullable: false), + Body = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Messages", x => x.MessageId); + table.ForeignKey( + name: "FK_Messages_Clients_ClientId", + column: x => x.ClientId, + principalTable: "Clients", + principalColumn: "Id"); + }); + migrationBuilder.CreateTable( name: "GiftComponents", columns: table => new @@ -145,6 +166,11 @@ namespace GiftShopDatabaseImplement.Migrations table: "GiftComponents", column: "GiftId"); + migrationBuilder.CreateIndex( + name: "IX_Messages_ClientId", + table: "Messages", + column: "ClientId"); + migrationBuilder.CreateIndex( name: "IX_Orders_ClientId", table: "Orders", @@ -167,6 +193,9 @@ namespace GiftShopDatabaseImplement.Migrations migrationBuilder.DropTable( name: "GiftComponents"); + migrationBuilder.DropTable( + name: "Messages"); + migrationBuilder.DropTable( name: "Orders");