Initial split of the modules
This commit is contained in:
25
NadekoBot.Core/Migrations/20170915034808_club-admins.cs
Normal file
25
NadekoBot.Core/Migrations/20170915034808_club-admins.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace NadekoBot.Migrations
|
||||
{
|
||||
public partial class clubadmins : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "IsClubAdmin",
|
||||
table: "DiscordUser",
|
||||
nullable: false,
|
||||
defaultValue: false);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "IsClubAdmin",
|
||||
table: "DiscordUser");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user