19 lines
442 B
C#
19 lines
442 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200203095222)]
|
|
public class KRETA2_2749 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTorzslap.sql", "uspGetErtesitoNyomtatvany.sql");
|
|
CreateSchemaSPFN("uspGetTorzslap", "uspGetErtesitoNyomtatvany");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|