23 lines
539 B
C#
23 lines
539 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace ReallifeGamemode.Migrations
|
|
{
|
|
public partial class UnusedColumnRemove : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ShopId",
|
|
table: "ServerVehicles");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "ShopId",
|
|
table: "ServerVehicles",
|
|
nullable: true);
|
|
}
|
|
}
|
|
}
|