36a02b3d7b
fix issues with live radar
26 lines
704 B
C#
26 lines
704 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SharedLibraryCore.Migrations.Sqlite
|
|
{
|
|
public partial class AddActivityAmount : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "ActivityAmount",
|
|
table: "EFRating",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ActivityAmount",
|
|
table: "EFRating");
|
|
}
|
|
}
|
|
}
|