2017-05-28 01:51:22 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2017-05-02 10:52:15 +02:00
|
|
|
|
|
|
|
|
|
namespace NadekoBot.Migrations
|
|
|
|
|
{
|
|
|
|
|
public partial class patreonid : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
|
|
|
name: "PatreonUserId",
|
|
|
|
|
table: "RewardedUsers",
|
|
|
|
|
nullable: true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "PatreonUserId",
|
|
|
|
|
table: "RewardedUsers");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|