26 lines
574 B
C#
26 lines
574 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190903112322)]
|
|
public class KRETA2_983 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetNemNaplozottOrakSzama.sql",
|
|
"uspGetHelyettesitesekListaja.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"uspGetNemNaplozottOrakSzama",
|
|
"uspGetHelyettesitesekListaja"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|