IW4M-Admin/SharedLibraryCore/Migrations/Postgresql/20180516023249_AddEloField.cs

26 lines
717 B
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Migrations;
using System;
using System.Collections.Generic;
namespace SharedLibraryCore.Migrations.Postgresql
{
public partial class AddEloField : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<double>(
name: "EloRating",
table: "EFClientStatistics",
nullable: false,
defaultValue: 0.0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "EloRating",
table: "EFClientStatistics");
}
}
}