25 lines
580 B
C#
25 lines
580 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200211135913)]
|
|
public class KRETA2_2912 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspGetOsztalyNaplo.sql",
|
|
"uspGetDokumentumErtekelesekIdoszakonkent.sql"
|
|
);
|
|
CreateSchemaSPFN(
|
|
"uspGetOsztalyNaplo",
|
|
"uspGetDokumentumErtekelesekIdoszakonkent"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|