Performance improvements. Timely command almost done
This commit is contained in:
1917
NadekoBot.Core/Migrations/20171026090236_timely.Designer.cs
generated
Normal file
1917
NadekoBot.Core/Migrations/20171026090236_timely.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
37
NadekoBot.Core/Migrations/20171026090236_timely.cs
Normal file
37
NadekoBot.Core/Migrations/20171026090236_timely.cs
Normal file
@ -0,0 +1,37 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NadekoBot.Migrations
|
||||
{
|
||||
public partial class timely : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "TimelyCurrency",
|
||||
table: "BotConfig",
|
||||
type: "INTEGER",
|
||||
nullable: false,
|
||||
defaultValue: 0);
|
||||
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "TimelyCurrencyPeriod",
|
||||
table: "BotConfig",
|
||||
type: "INTEGER",
|
||||
nullable: false,
|
||||
defaultValue: 0);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TimelyCurrency",
|
||||
table: "BotConfig");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TimelyCurrencyPeriod",
|
||||
table: "BotConfig");
|
||||
}
|
||||
}
|
||||
}
|
@ -185,6 +185,10 @@ namespace NadekoBot.Migrations
|
||||
|
||||
b.Property<bool>("RotatingStatuses");
|
||||
|
||||
b.Property<int>("TimelyCurrency");
|
||||
|
||||
b.Property<int>("TimelyCurrencyPeriod");
|
||||
|
||||
b.Property<int>("TriviaCurrencyReward");
|
||||
|
||||
b.Property<int>("XpMinutesTimeout")
|
||||
|
Reference in New Issue
Block a user