28 lines
780 B
C#
28 lines
780 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NadekoBot.Migrations
|
|
{
|
|
public partial class tesargrouping : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "Group",
|
|
table: "SelfAssignableRoles",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: 0)
|
|
.Annotation("Sqlite:Autoincrement", true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Group",
|
|
table: "SelfAssignableRoles");
|
|
}
|
|
}
|
|
}
|