using Microsoft.EntityFrameworkCore.Migrations; namespace Timeline.Migrations { public partial class TimelineAddTitle : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "title", table: "timelines", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "title", table: "timelines"); } } }