using Microsoft.EntityFrameworkCore.Migrations; using System; using System.Collections.Generic; namespace YTManager.Migrations { public partial class added_refreshed : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Refreshed", table: "Channels", nullable: false, defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Refreshed", table: "Channels"); } } }