53 lines
1.5 KiB
C#
53 lines
1.5 KiB
C#
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace DatabaseImplement.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class sale3 : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<DateTime>(
|
|||
|
name: "End",
|
|||
|
table: "Sales",
|
|||
|
type: "timestamp without time zone",
|
|||
|
nullable: false,
|
|||
|
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified));
|
|||
|
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "FullDescription",
|
|||
|
table: "Sales",
|
|||
|
type: "text",
|
|||
|
nullable: false,
|
|||
|
defaultValue: "");
|
|||
|
|
|||
|
migrationBuilder.AddColumn<DateTime>(
|
|||
|
name: "Start",
|
|||
|
table: "Sales",
|
|||
|
type: "timestamp without time zone",
|
|||
|
nullable: false,
|
|||
|
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified));
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "End",
|
|||
|
table: "Sales");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "FullDescription",
|
|||
|
table: "Sales");
|
|||
|
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "Start",
|
|||
|
table: "Sales");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|