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