scoreboard-api/Server/Migrations/20220715174201_Scoreboard.cs
cuqmbr 9c76d4965b chore: update db model & migrations
Remove id field and set username field to be a primary key
2022-07-15 20:44:15 +03:00

33 lines
988 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Server.Migrations
{
public partial class Scoreboard : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "Scoreboard",
columns: table => new
{
Username = table.Column<string>(type: "TEXT", nullable: false),
Score = table.Column<int>(type: "INTEGER", nullable: false),
PostTime = table.Column<DateTime>(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Scoreboard", x => x.Username);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Scoreboard");
}
}
}