19 lines
418 B
C#
19 lines
418 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200430141104)]
|
|
public class KRETA2_2391_1 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspDeleteEgyediNapOsztalycsoport.sql");
|
|
CreateSchemaSPFN("uspDeleteEgyediNapOsztalycsoport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|