oh yeah woo yeah
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kehyeedra/Kehyeedra3/Migrations/20220618191051_Schizogayme.cs

54 lines
1.5 KiB

using Microsoft.EntityFrameworkCore.Migrations;
namespace Kehyeedra3.Migrations
{
public partial class Schizogayme : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<ulong>(
name: "SchizoChannel",
table: "Guilds",
nullable: false,
defaultValue: 0ul);
migrationBuilder.AddColumn<ulong>(
name: "SchizoLogChannel",
table: "Guilds",
nullable: false,
defaultValue: 0ul);
migrationBuilder.AddColumn<bool>(
name: "Schizogame",
table: "Guilds",
nullable: false,
defaultValue: false);
migrationBuilder.AddColumn<ulong>(
name: "WitchRole",
table: "Guilds",
nullable: false,
defaultValue: 0ul);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SchizoChannel",
table: "Guilds");
migrationBuilder.DropColumn(
name: "SchizoLogChannel",
table: "Guilds");
migrationBuilder.DropColumn(
name: "Schizogame",
table: "Guilds");
migrationBuilder.DropColumn(
name: "WitchRole",
table: "Guilds");
}
}
}