Files
API/TOOHUCardAPI/Migrations/20211031065641_maxpower stuff.cs

25 lines
665 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace TOOHUCardAPI.Migrations
{
public partial class maxpowerstuff : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "PowerMaxTotal",
table: "Users",
type: "INTEGER",
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PowerMaxTotal",
table: "Users");
}
}
}