23 lines
553 B
C#
23 lines
553 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190624135642)]
|
|
public class KRETA2_184 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_GetOsztalyNaplo.sql",
|
|
"sp_GetDokumentumErtekelesekIdoszakonkent.sql");
|
|
CreateSchemaSPFN(
|
|
"sp_GetOsztalyNaplo",
|
|
"sp_GetDokumentumErtekelesekIdoszakonkent");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|