Skip to content
Snippets Groups Projects

Update: Dropped KPI table

Merged Petar Hristov requested to merge Issue/2364-testingKpiParser into dev
1 file
+ 19
0
Compare changes
  • Side-by-side
  • Inline
 
using FluentMigrator;
 
 
namespace Coscine.Migrations.Migrations
 
{
 
//yyyymmddhhmm
 
[Migration(202301161050)]
 
public class Migration202301161050DropKpiTable : Migration
 
{
 
public override void Down()
 
{
 
Create.Table("Kpi");
 
}
 
 
public override void Up()
 
{
 
Delete.Table("Kpi");
 
}
 
}
 
}
 
\ No newline at end of file
Loading