using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable #pragma warning disable CA1814 // Prefer jagged arrays over multidimensional namespace CutList.Web.Migrations { /// public partial class InitialCreate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "CuttingTools", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Name = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), KerfInches = table.Column(type: "decimal(6,4)", precision: 6, scale: 4, nullable: false), IsDefault = table.Column(type: "bit", nullable: false), IsActive = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_CuttingTools", x => x.Id); }); migrationBuilder.CreateTable( name: "Materials", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Shape = table.Column(type: "nvarchar(50)", maxLength: 50, nullable: false), Size = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), Description = table.Column(type: "nvarchar(255)", maxLength: 255, nullable: true), IsActive = table.Column(type: "bit", nullable: false), CreatedAt = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETUTCDATE()"), UpdatedAt = table.Column(type: "datetime2", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Materials", x => x.Id); }); migrationBuilder.CreateTable( name: "Suppliers", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Name = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), ContactInfo = table.Column(type: "nvarchar(500)", maxLength: 500, nullable: true), Notes = table.Column(type: "nvarchar(max)", nullable: true), IsActive = table.Column(type: "bit", nullable: false), CreatedAt = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETUTCDATE()") }, constraints: table => { table.PrimaryKey("PK_Suppliers", x => x.Id); }); migrationBuilder.CreateTable( name: "Projects", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Name = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), MaterialId = table.Column(type: "int", nullable: true), CuttingToolId = table.Column(type: "int", nullable: true), Notes = table.Column(type: "nvarchar(max)", nullable: true), CreatedAt = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETUTCDATE()"), UpdatedAt = table.Column(type: "datetime2", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Projects", x => x.Id); table.ForeignKey( name: "FK_Projects_CuttingTools_CuttingToolId", column: x => x.CuttingToolId, principalTable: "CuttingTools", principalColumn: "Id", onDelete: ReferentialAction.SetNull); table.ForeignKey( name: "FK_Projects_Materials_MaterialId", column: x => x.MaterialId, principalTable: "Materials", principalColumn: "Id", onDelete: ReferentialAction.SetNull); }); migrationBuilder.CreateTable( name: "SupplierStocks", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), SupplierId = table.Column(type: "int", nullable: false), MaterialId = table.Column(type: "int", nullable: false), LengthInches = table.Column(type: "decimal(10,4)", precision: 10, scale: 4, nullable: false), Price = table.Column(type: "decimal(10,2)", precision: 10, scale: 2, nullable: true), Notes = table.Column(type: "nvarchar(255)", maxLength: 255, nullable: true), IsActive = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_SupplierStocks", x => x.Id); table.ForeignKey( name: "FK_SupplierStocks_Materials_MaterialId", column: x => x.MaterialId, principalTable: "Materials", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_SupplierStocks_Suppliers_SupplierId", column: x => x.SupplierId, principalTable: "Suppliers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ProjectParts", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ProjectId = table.Column(type: "int", nullable: false), Name = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: false), LengthInches = table.Column(type: "decimal(10,4)", precision: 10, scale: 4, nullable: false), Quantity = table.Column(type: "int", nullable: false), SortOrder = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ProjectParts", x => x.Id); table.ForeignKey( name: "FK_ProjectParts_Projects_ProjectId", column: x => x.ProjectId, principalTable: "Projects", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ProjectStockBins", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ProjectId = table.Column(type: "int", nullable: false), LengthInches = table.Column(type: "decimal(10,4)", precision: 10, scale: 4, nullable: false), Quantity = table.Column(type: "int", nullable: false), Priority = table.Column(type: "int", nullable: false), SortOrder = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ProjectStockBins", x => x.Id); table.ForeignKey( name: "FK_ProjectStockBins_Projects_ProjectId", column: x => x.ProjectId, principalTable: "Projects", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.InsertData( table: "CuttingTools", columns: new[] { "Id", "IsActive", "IsDefault", "KerfInches", "Name" }, values: new object[,] { { 1, true, true, 0.0625m, "Bandsaw" }, { 2, true, false, 0.125m, "Chop Saw" }, { 3, true, false, 0.0625m, "Cold Cut Saw" }, { 4, true, false, 0.0625m, "Hacksaw" } }); migrationBuilder.CreateIndex( name: "IX_ProjectParts_ProjectId", table: "ProjectParts", column: "ProjectId"); migrationBuilder.CreateIndex( name: "IX_Projects_CuttingToolId", table: "Projects", column: "CuttingToolId"); migrationBuilder.CreateIndex( name: "IX_Projects_MaterialId", table: "Projects", column: "MaterialId"); migrationBuilder.CreateIndex( name: "IX_ProjectStockBins_ProjectId", table: "ProjectStockBins", column: "ProjectId"); migrationBuilder.CreateIndex( name: "IX_SupplierStocks_MaterialId", table: "SupplierStocks", column: "MaterialId"); migrationBuilder.CreateIndex( name: "IX_SupplierStocks_SupplierId_MaterialId_LengthInches", table: "SupplierStocks", columns: new[] { "SupplierId", "MaterialId", "LengthInches" }, unique: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ProjectParts"); migrationBuilder.DropTable( name: "ProjectStockBins"); migrationBuilder.DropTable( name: "SupplierStocks"); migrationBuilder.DropTable( name: "Projects"); migrationBuilder.DropTable( name: "Suppliers"); migrationBuilder.DropTable( name: "CuttingTools"); migrationBuilder.DropTable( name: "Materials"); } } }