40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace NadekoBot.Migrations
|
|
{
|
|
public partial class repeaterdrop : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Repeaters");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Repeaters",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(nullable: false)
|
|
.Annotation("Sqlite:Autoincrement", true),
|
|
ChannelId = table.Column<ulong>(nullable: false),
|
|
GuildId = table.Column<ulong>(nullable: false),
|
|
Interval = table.Column<TimeSpan>(nullable: false),
|
|
Message = table.Column<string>(nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Repeaters", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Repeaters_channelId",
|
|
table: "Repeaters",
|
|
column: "ChannelId",
|
|
unique: true);
|
|
}
|
|
}
|
|
}
|