30 lines
804 B
C#
30 lines
804 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace song_of_the_day.DataMigrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class additionaldataforsongsubmissions : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "Submitted",
|
|
table: "SongSuggestions",
|
|
type: "boolean",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Submitted",
|
|
table: "SongSuggestions");
|
|
}
|
|
}
|
|
}
|