Skip to content
Snippets Groups Projects

Release: Sprint/2023 02 :robot:

Merged CoscineBot requested to merge dev into master
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