32 lines
875 B
C#
32 lines
875 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace MoonlightServers.ApiServer.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddedDefaultDockerImageField : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "DefaultDockerImage",
|
|
schema: "Servers",
|
|
table: "Stars",
|
|
type: "int",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "DefaultDockerImage",
|
|
schema: "Servers",
|
|
table: "Stars");
|
|
}
|
|
}
|
|
}
|