20 lines
575 B
C#
20 lines
575 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200311112511)]
|
|
public class KRETA2_3379 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetDokumentumErtekelesek.sql", "uspGetErtesitoNyomtatvany.sql", "uspGetTorzslap.sql");
|
|
CreateSchemaSPFN("uspGetDokumentumErtekelesek", "uspGetErtesitoNyomtatvany", "uspGetTorzslap");
|
|
DeleteStoredProcedures("sp_GetDokumentumErtekelesek");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|