2017-05-28 01:51:22 +02:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2017-02-13 13:56:06 +01:00
|
|
|
|
|
|
|
|
|
namespace NadekoBot.Migrations
|
|
|
|
|
{
|
|
|
|
|
public partial class guildtimezoneandlocale : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
|
|
|
name: "Locale",
|
|
|
|
|
table: "GuildConfigs",
|
|
|
|
|
nullable: true,
|
|
|
|
|
defaultValue: null);
|
|
|
|
|
|
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
|
|
|
name: "TimeZoneId",
|
|
|
|
|
table: "GuildConfigs",
|
2017-02-13 13:58:08 +01:00
|
|
|
|
nullable: true,
|
2017-02-13 13:56:06 +01:00
|
|
|
|
defaultValue: null);
|
2017-02-13 17:45:29 +01:00
|
|
|
|
|
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
|
|
|
name: "Locale",
|
|
|
|
|
table: "BotConfig",
|
|
|
|
|
nullable: true,
|
|
|
|
|
defaultValue: null);
|
2017-02-13 13:56:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "Locale",
|
|
|
|
|
table: "GuildConfigs");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "TimeZoneId",
|
|
|
|
|
table: "GuildConfigs");
|
2017-02-13 17:45:29 +01:00
|
|
|
|
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "Locale",
|
|
|
|
|
table: "BotConfig");
|
2017-02-13 13:56:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|