43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace MoonlightServers.Api.Infrastructure.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddedNullabilityForTemplateVariableDefaultValue : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "DefaultValue",
|
|
schema: "servers",
|
|
table: "TemplateVariablesVariables",
|
|
type: "character varying(1024)",
|
|
maxLength: 1024,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldType: "character varying(1024)",
|
|
oldMaxLength: 1024);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "DefaultValue",
|
|
schema: "servers",
|
|
table: "TemplateVariablesVariables",
|
|
type: "character varying(1024)",
|
|
maxLength: 1024,
|
|
nullable: false,
|
|
defaultValue: "",
|
|
oldClrType: typeof(string),
|
|
oldType: "character varying(1024)",
|
|
oldMaxLength: 1024,
|
|
oldNullable: true);
|
|
}
|
|
}
|
|
}
|