Migration and daily login change

This commit is contained in:
2021-10-31 14:06:11 -04:00
parent a3a50a5e07
commit e33aaa5f7b
8 changed files with 1092 additions and 6 deletions

View File

@@ -0,0 +1,33 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace TOOHUCardAPI.Migrations
{
public partial class playerdatadoneforfrontfacing : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "PetEffect",
table: "Users",
type: "TEXT",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "PetModel",
table: "Users",
type: "TEXT",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PetEffect",
table: "Users");
migrationBuilder.DropColumn(
name: "PetModel",
table: "Users");
}
}
}