24 lines
687 B
C#
24 lines
687 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200217104505)]
|
|
public class KRETA2_2954 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetDokumentumTanuloZaradekai.sql");
|
|
CreateSchemaSPFN("uspGetDokumentumTanuloZaradekai");
|
|
|
|
ExecuteScripts("uspGetErtesitoNyomtatvany.sql", "uspGetOsztalyNaplo.sql", "uspGetTorzslap.sql");
|
|
CreateSchemaSPFN("uspGetErtesitoNyomtatvany", "uspGetOsztalyNaplo", "uspGetTorzslap");
|
|
|
|
DeleteFunctions("fnGetDokumentumTanuloZaradekai");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|