forked from EllieBotDevs/elliebot
25 lines
672 B
C#
25 lines
672 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace EllieBot.Migrations.Mysql
|
|
{
|
|
public partial class shoprolereq : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<ulong>(
|
|
name: "rolerequirement",
|
|
table: "shopentry",
|
|
type: "bigint unsigned",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "rolerequirement",
|
|
table: "shopentry");
|
|
}
|
|
}
|
|
}
|