Files
reallife-gamemode/ReallifeGamemode.Database/Migrations/20191101144543_SchoolId.cs
Lukas Moungos a211e23d37 [+] Add SchoolVehicle Class for Driving and Flight School
[*] Fixed and Improved Flight School
2019-11-01 18:25:31 +01:00

23 lines
614 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace ReallifeGamemode.Database.Migrations
{
public partial class SchoolId : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "SchoolId",
table: "ServerVehicles",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SchoolId",
table: "ServerVehicles");
}
}
}