[+] Finished Payday-System

This commit is contained in:
Lukas Moungos
2019-07-19 23:22:21 +02:00
parent adfc6fe8e9
commit 82b91543a9
6 changed files with 1269 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,23 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace ReallifeGamemode.Migrations
{
public partial class PaydayTimer : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "PaydayTimer",
table: "Users",
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PaydayTimer",
table: "Users");
}
}
}

View File

@@ -840,6 +840,8 @@ namespace ReallifeGamemode.Migrations
b.Property<int?>("HouseId");
b.Property<int>("JailTime");
b.Property<int?>("JobId");
b.Property<int>("LogUserId");
@@ -849,6 +851,8 @@ namespace ReallifeGamemode.Migrations
b.Property<string>("Password")
.HasMaxLength(64);
b.Property<int>("PaydayTimer");
b.Property<float>("PositionX");