Migration and daily login change
This commit is contained in:
1026
TOOHUCardAPI/Migrations/20211031154114_playerdata done for front facing.Designer.cs
generated
Normal file
1026
TOOHUCardAPI/Migrations/20211031154114_playerdata done for front facing.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -965,9 +965,15 @@ namespace TOOHUCardAPI.Migrations
|
||||
b.Property<int>("MaxWave")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("PetEffect")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("PetLevel")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("PetModel")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<int>("Point")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user