mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
45 lines
1.6 KiB
C#
45 lines
1.6 KiB
C#
using System;
|
|
using BTCPayServer.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BTCPayServer.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationDbContext))]
|
|
[Migration("20220610090843_AddSettingsToStore")]
|
|
public partial class AddSettingsToStore : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
int? maxlength = migrationBuilder.IsMySql() ? 255 : null;
|
|
migrationBuilder.CreateTable(
|
|
name: "StoreSettings",
|
|
columns: table => new
|
|
{
|
|
Name = table.Column<string>(nullable: false, maxLength: maxlength),
|
|
StoreId = table.Column<string>(nullable: false, maxLength: maxlength),
|
|
Value = table.Column<string>(type: migrationBuilder.IsNpgsql() ? "JSONB" : "TEXT", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_StoreSettings", x => new { x.StoreId, x.Name });
|
|
table.ForeignKey(
|
|
name: "FK_StoreSettings_Stores_StoreId",
|
|
column: x => x.StoreId,
|
|
principalTable: "Stores",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "StoreSettings");
|
|
}
|
|
}
|
|
}
|