30 lines
728 B
C#
30 lines
728 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Lactose.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddedSettingsOptions : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
|
|
migrationBuilder.AddColumn<string[]>(
|
|
name: "Options",
|
|
table: "Settings",
|
|
type: "text[]",
|
|
nullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Options",
|
|
table: "Settings");
|
|
}
|
|
}
|
|
}
|