27 lines
684 B
C#
27 lines
684 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200108140125)]
|
|
public class KRETA2_2341 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetNemNaplozottOrarendiOrak_Core.sql",
|
|
"uspGetNemNaplozottOrarendiOrak.sql",
|
|
"uspGetNemNaplozottOrakSzama.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"uspGetNemNaplozottOrarendiOrak_Core",
|
|
"uspGetNemNaplozottOrarendiOrak",
|
|
"uspGetNemNaplozottOrakSzama"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|