chore: update db model & migrations
Remove id field and set username field to be a primary key
This commit is contained in:
parent
e07dede15d
commit
9c76d4965b
@ -1,10 +1,12 @@
|
|||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
namespace DatabaseModels;
|
namespace DatabaseModels;
|
||||||
|
|
||||||
public class ScoreboardRecord
|
public class ScoreboardRecord
|
||||||
{
|
{
|
||||||
public UInt32 Id { get; set; }
|
[Key]
|
||||||
|
|
||||||
public string? Username { get; set; }
|
public string? Username { get; set; }
|
||||||
public DateTime PostTime { get; set; }
|
|
||||||
public int Score { get; set; }
|
public int Score { get; set; }
|
||||||
|
|
||||||
|
public DateTime PostTime { get; set; }
|
||||||
}
|
}
|
@ -11,7 +11,7 @@ using Server.Data;
|
|||||||
namespace Server.Migrations
|
namespace Server.Migrations
|
||||||
{
|
{
|
||||||
[DbContext(typeof(ServerDbContext))]
|
[DbContext(typeof(ServerDbContext))]
|
||||||
[Migration("20220714194024_Scoreboard")]
|
[Migration("20220715174201_Scoreboard")]
|
||||||
partial class Scoreboard
|
partial class Scoreboard
|
||||||
{
|
{
|
||||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||||
@ -21,9 +21,8 @@ namespace Server.Migrations
|
|||||||
|
|
||||||
modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b =>
|
modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b =>
|
||||||
{
|
{
|
||||||
b.Property<uint>("Id")
|
b.Property<string>("Username")
|
||||||
.ValueGeneratedOnAdd()
|
.HasColumnType("TEXT");
|
||||||
.HasColumnType("INTEGER");
|
|
||||||
|
|
||||||
b.Property<DateTime>("PostTime")
|
b.Property<DateTime>("PostTime")
|
||||||
.HasColumnType("TEXT");
|
.HasColumnType("TEXT");
|
||||||
@ -31,10 +30,7 @@ namespace Server.Migrations
|
|||||||
b.Property<int>("Score")
|
b.Property<int>("Score")
|
||||||
.HasColumnType("INTEGER");
|
.HasColumnType("INTEGER");
|
||||||
|
|
||||||
b.Property<string>("Username")
|
b.HasKey("Username");
|
||||||
.HasColumnType("TEXT");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Scoreboard");
|
b.ToTable("Scoreboard");
|
||||||
});
|
});
|
@ -13,15 +13,13 @@ namespace Server.Migrations
|
|||||||
name: "Scoreboard",
|
name: "Scoreboard",
|
||||||
columns: table => new
|
columns: table => new
|
||||||
{
|
{
|
||||||
Id = table.Column<uint>(type: "INTEGER", nullable: false)
|
Username = table.Column<string>(type: "TEXT", nullable: false),
|
||||||
.Annotation("Sqlite:Autoincrement", true),
|
Score = table.Column<int>(type: "INTEGER", nullable: false),
|
||||||
Username = table.Column<string>(type: "TEXT", nullable: true),
|
PostTime = table.Column<DateTime>(type: "TEXT", nullable: false)
|
||||||
PostTime = table.Column<DateTime>(type: "TEXT", nullable: false),
|
|
||||||
Score = table.Column<int>(type: "INTEGER", nullable: false)
|
|
||||||
},
|
},
|
||||||
constraints: table =>
|
constraints: table =>
|
||||||
{
|
{
|
||||||
table.PrimaryKey("PK_Scoreboard", x => x.Id);
|
table.PrimaryKey("PK_Scoreboard", x => x.Username);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -19,9 +19,8 @@ namespace Server.Migrations
|
|||||||
|
|
||||||
modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b =>
|
modelBuilder.Entity("DatabaseModels.ScoreboardRecord", b =>
|
||||||
{
|
{
|
||||||
b.Property<uint>("Id")
|
b.Property<string>("Username")
|
||||||
.ValueGeneratedOnAdd()
|
.HasColumnType("TEXT");
|
||||||
.HasColumnType("INTEGER");
|
|
||||||
|
|
||||||
b.Property<DateTime>("PostTime")
|
b.Property<DateTime>("PostTime")
|
||||||
.HasColumnType("TEXT");
|
.HasColumnType("TEXT");
|
||||||
@ -29,10 +28,7 @@ namespace Server.Migrations
|
|||||||
b.Property<int>("Score")
|
b.Property<int>("Score")
|
||||||
.HasColumnType("INTEGER");
|
.HasColumnType("INTEGER");
|
||||||
|
|
||||||
b.Property<string>("Username")
|
b.HasKey("Username");
|
||||||
.HasColumnType("TEXT");
|
|
||||||
|
|
||||||
b.HasKey("Id");
|
|
||||||
|
|
||||||
b.ToTable("Scoreboard");
|
b.ToTable("Scoreboard");
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user