using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace foodmarket.Infrastructure.Persistence.Migrations
{
///
public partial class Phase2c_RetailSale : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "retail_sales",
schema: "public",
columns: table => new
{
Id = table.Column(type: "uuid", nullable: false),
Number = table.Column(type: "character varying(50)", maxLength: 50, nullable: false),
Date = table.Column(type: "timestamp with time zone", nullable: false),
Status = table.Column(type: "integer", nullable: false),
StoreId = table.Column(type: "uuid", nullable: false),
RetailPointId = table.Column(type: "uuid", nullable: true),
CustomerId = table.Column(type: "uuid", nullable: true),
CashierUserId = table.Column(type: "uuid", nullable: true),
CurrencyId = table.Column(type: "uuid", nullable: false),
Subtotal = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
DiscountTotal = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
Total = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
Payment = table.Column(type: "integer", nullable: false),
PaidCash = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
PaidCard = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
Notes = table.Column(type: "character varying(1000)", maxLength: 1000, nullable: true),
PostedAt = table.Column(type: "timestamp with time zone", nullable: true),
PostedByUserId = table.Column(type: "uuid", nullable: true),
CreatedAt = table.Column(type: "timestamp with time zone", nullable: false),
UpdatedAt = table.Column(type: "timestamp with time zone", nullable: true),
OrganizationId = table.Column(type: "uuid", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_retail_sales", x => x.Id);
table.ForeignKey(
name: "FK_retail_sales_counterparties_CustomerId",
column: x => x.CustomerId,
principalSchema: "public",
principalTable: "counterparties",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
table.ForeignKey(
name: "FK_retail_sales_currencies_CurrencyId",
column: x => x.CurrencyId,
principalSchema: "public",
principalTable: "currencies",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
table.ForeignKey(
name: "FK_retail_sales_retail_points_RetailPointId",
column: x => x.RetailPointId,
principalSchema: "public",
principalTable: "retail_points",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
table.ForeignKey(
name: "FK_retail_sales_stores_StoreId",
column: x => x.StoreId,
principalSchema: "public",
principalTable: "stores",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
});
migrationBuilder.CreateTable(
name: "retail_sale_lines",
schema: "public",
columns: table => new
{
Id = table.Column(type: "uuid", nullable: false),
RetailSaleId = table.Column(type: "uuid", nullable: false),
ProductId = table.Column(type: "uuid", nullable: false),
Quantity = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
UnitPrice = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
Discount = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
LineTotal = table.Column(type: "numeric(18,4)", precision: 18, scale: 4, nullable: false),
VatPercent = table.Column(type: "numeric(5,2)", precision: 5, scale: 2, nullable: false),
SortOrder = table.Column(type: "integer", nullable: false),
CreatedAt = table.Column(type: "timestamp with time zone", nullable: false),
UpdatedAt = table.Column(type: "timestamp with time zone", nullable: true),
OrganizationId = table.Column(type: "uuid", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_retail_sale_lines", x => x.Id);
table.ForeignKey(
name: "FK_retail_sale_lines_products_ProductId",
column: x => x.ProductId,
principalSchema: "public",
principalTable: "products",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
table.ForeignKey(
name: "FK_retail_sale_lines_retail_sales_RetailSaleId",
column: x => x.RetailSaleId,
principalSchema: "public",
principalTable: "retail_sales",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_retail_sale_lines_OrganizationId_ProductId",
schema: "public",
table: "retail_sale_lines",
columns: new[] { "OrganizationId", "ProductId" });
migrationBuilder.CreateIndex(
name: "IX_retail_sale_lines_ProductId",
schema: "public",
table: "retail_sale_lines",
column: "ProductId");
migrationBuilder.CreateIndex(
name: "IX_retail_sale_lines_RetailSaleId",
schema: "public",
table: "retail_sale_lines",
column: "RetailSaleId");
migrationBuilder.CreateIndex(
name: "IX_retail_sales_CurrencyId",
schema: "public",
table: "retail_sales",
column: "CurrencyId");
migrationBuilder.CreateIndex(
name: "IX_retail_sales_CustomerId",
schema: "public",
table: "retail_sales",
column: "CustomerId");
migrationBuilder.CreateIndex(
name: "IX_retail_sales_OrganizationId_CashierUserId",
schema: "public",
table: "retail_sales",
columns: new[] { "OrganizationId", "CashierUserId" });
migrationBuilder.CreateIndex(
name: "IX_retail_sales_OrganizationId_Date",
schema: "public",
table: "retail_sales",
columns: new[] { "OrganizationId", "Date" });
migrationBuilder.CreateIndex(
name: "IX_retail_sales_OrganizationId_Number",
schema: "public",
table: "retail_sales",
columns: new[] { "OrganizationId", "Number" },
unique: true);
migrationBuilder.CreateIndex(
name: "IX_retail_sales_OrganizationId_Status",
schema: "public",
table: "retail_sales",
columns: new[] { "OrganizationId", "Status" });
migrationBuilder.CreateIndex(
name: "IX_retail_sales_RetailPointId",
schema: "public",
table: "retail_sales",
column: "RetailPointId");
migrationBuilder.CreateIndex(
name: "IX_retail_sales_StoreId",
schema: "public",
table: "retail_sales",
column: "StoreId");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "retail_sale_lines",
schema: "public");
migrationBuilder.DropTable(
name: "retail_sales",
schema: "public");
}
}
}