19 lines
526 B
C#
19 lines
526 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200120101158)]
|
|
public class KRETA2_2501 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetHaladasiNaploAdatok.sql", "uspInsertEgyediNap.sql", "uspInsertEgyediNapOsztalycsoport.sql");
|
|
CreateSchemaSPFN("sp_GetHaladasiNaploAdatok", "uspInsertEgyediNap", "uspInsertEgyediNapOsztalycsoport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|