26 lines
632 B
C#
26 lines
632 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200415203626)]
|
|
public class KRETA2_2542_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"KRETA2_2542_2.sql"
|
|
, "uspGetGondviselokElerhetosegeiExport.sql"
|
|
, "fnGetDokumentumTanuloOrGondviseloCim.sql");
|
|
CreateSchemaSPFN(
|
|
"uspGetGondviselokElerhetosegeiExport"
|
|
, "fnGetDokumentumTanuloOrGondviseloCim"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|