33 lines
947 B
C#
33 lines
947 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PARR.DAL.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class tblScheduleResponseAreaTimeOffsetAddUtcTimeOffset : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<TimeSpan>(
|
|
name: "UtcTimeOffset",
|
|
schema: "schedule",
|
|
table: "ResponseAreaTimeOffsets",
|
|
type: "interval",
|
|
nullable: false,
|
|
defaultValue: new TimeSpan(0, 0, 0, 0, 0));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "UtcTimeOffset",
|
|
schema: "schedule",
|
|
table: "ResponseAreaTimeOffsets");
|
|
}
|
|
}
|
|
}
|