Skip to content
Snippets Groups Projects
Commit a74a3838 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

New: Drop KPI table

parent 740fc143
No related branches found
No related tags found
1 merge request!100Update: Dropped KPI table
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment