19 lines
565 B
C#
19 lines
565 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191204144229)]
|
|
public class DB_1729 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumMulasztasokOsztalyonkentReszletes.sql", "indexes.sql", "sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika.sql");
|
|
CreateSchemaSPFN("fnGetDokumentumMulasztasokOsztalyonkentReszletes", "sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|