50 lines
2.2 KiB
C#
50 lines
2.2 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace GerbilManagerWebAPI.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddSaleReservation : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "SaleReservations",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GerbilId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
GerbilName = table.Column<string>(type: "text", nullable: true),
|
|
Status = table.Column<string>(type: "text", nullable: false),
|
|
ReservedForContactId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
ContactName = table.Column<string>(type: "text", nullable: true),
|
|
AppointmentDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
Price = table.Column<decimal>(type: "numeric(10,2)", precision: 10, scale: 2, nullable: true),
|
|
Note = table.Column<string>(type: "text", nullable: true),
|
|
HandedOverDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
CreatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
|
|
UpdatedAt = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_SaleReservations", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_SaleReservations_GerbilId",
|
|
table: "SaleReservations",
|
|
column: "GerbilId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "SaleReservations");
|
|
}
|
|
}
|
|
}
|