using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PARR.DAL.Migrations { /// public partial class tblJobGroupAddUserTimeZoneOffsetMinutes : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "UserTimeZoneOffsetMinutes", schema: "job", table: "Groups", type: "integer", nullable: true, comment: "Смещение часового пояса пользователя в минутах относительно UTC на момент ReferenceDate"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "UserTimeZoneOffsetMinutes", schema: "job", table: "Groups"); } } }