79 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
using System;
 | 
						|
using Microsoft.EntityFrameworkCore.Migrations;
 | 
						|
 | 
						|
#nullable disable
 | 
						|
 | 
						|
namespace NetinaShop.Repository.Migrations
 | 
						|
{
 | 
						|
    /// <inheritdoc />
 | 
						|
    public partial class AddPayment : Migration
 | 
						|
    {
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Up(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.CreateTable(
 | 
						|
                name: "Payments",
 | 
						|
                schema: "public",
 | 
						|
                columns: table => new
 | 
						|
                {
 | 
						|
                    Id = table.Column<Guid>(type: "uuid", nullable: false),
 | 
						|
                    FactorNumber = table.Column<string>(type: "text", nullable: false),
 | 
						|
                    Amount = table.Column<double>(type: "double precision", nullable: false),
 | 
						|
                    Description = table.Column<string>(type: "text", nullable: false),
 | 
						|
                    TransactionCode = table.Column<string>(type: "text", nullable: false),
 | 
						|
                    CardPan = table.Column<string>(type: "text", nullable: false),
 | 
						|
                    Authority = table.Column<string>(type: "text", nullable: false),
 | 
						|
                    Type = table.Column<int>(type: "integer", nullable: false),
 | 
						|
                    Status = table.Column<int>(type: "integer", nullable: false),
 | 
						|
                    OrderId = table.Column<Guid>(type: "uuid", nullable: false),
 | 
						|
                    UserId = table.Column<Guid>(type: "uuid", nullable: false),
 | 
						|
                    RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
 | 
						|
                    CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
 | 
						|
                    CreatedBy = table.Column<string>(type: "text", nullable: true),
 | 
						|
                    IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
 | 
						|
                    RemovedBy = table.Column<string>(type: "text", nullable: true),
 | 
						|
                    ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
 | 
						|
                    ModifiedBy = table.Column<string>(type: "text", nullable: true)
 | 
						|
                },
 | 
						|
                constraints: table =>
 | 
						|
                {
 | 
						|
                    table.PrimaryKey("PK_Payments", x => x.Id);
 | 
						|
                    table.ForeignKey(
 | 
						|
                        name: "FK_Payments_Orders_OrderId",
 | 
						|
                        column: x => x.OrderId,
 | 
						|
                        principalSchema: "public",
 | 
						|
                        principalTable: "Orders",
 | 
						|
                        principalColumn: "Id",
 | 
						|
                        onDelete: ReferentialAction.Restrict);
 | 
						|
                    table.ForeignKey(
 | 
						|
                        name: "FK_Payments_Users_UserId",
 | 
						|
                        column: x => x.UserId,
 | 
						|
                        principalSchema: "public",
 | 
						|
                        principalTable: "Users",
 | 
						|
                        principalColumn: "Id",
 | 
						|
                        onDelete: ReferentialAction.Restrict);
 | 
						|
                });
 | 
						|
 | 
						|
            migrationBuilder.CreateIndex(
 | 
						|
                name: "IX_Payments_OrderId",
 | 
						|
                schema: "public",
 | 
						|
                table: "Payments",
 | 
						|
                column: "OrderId");
 | 
						|
 | 
						|
            migrationBuilder.CreateIndex(
 | 
						|
                name: "IX_Payments_UserId",
 | 
						|
                schema: "public",
 | 
						|
                table: "Payments",
 | 
						|
                column: "UserId");
 | 
						|
        }
 | 
						|
 | 
						|
        /// <inheritdoc />
 | 
						|
        protected override void Down(MigrationBuilder migrationBuilder)
 | 
						|
        {
 | 
						|
            migrationBuilder.DropTable(
 | 
						|
                name: "Payments",
 | 
						|
                schema: "public");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |