2020-11-18 09:08:24 -06:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2020-11-27 21:52:52 -06:00
|
|
|
|
namespace SharedLibraryCore.Migrations.Postgresql
|
2020-11-18 09:08:24 -06:00
|
|
|
|
{
|
|
|
|
|
public partial class AddSentIngameFlagToClientMessage : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
|
|
|
name: "SentIngame",
|
|
|
|
|
table: "EFClientMessages",
|
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "SentIngame",
|
|
|
|
|
table: "EFClientMessages");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|