19 lines
554 B
C#
19 lines
554 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200102162057)]
|
|
public class DB_1728 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("fnGetDokumentumErtekelesekOsztalyonkent.sql", "sp_GetDokumentumErtekelesek.sql", "uspGetErtesitoNyomtatvany.sql");
|
|
CreateSchemaSPFN("fnGetDokumentumErtekelesekOsztalyonkent", "sp_GetDokumentumErtekelesek", "uspGetErtesitoNyomtatvany");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|