18 lines
450 B
C#
18 lines
450 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190909153828)]
|
|
public class KRETA2_540 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanarTanitottTanuloi.sql", "uspGetBukasokSzama.sql");
|
|
CreateSchemaSPFN("uspGetTanarTanitottTanuloi", "uspGetBukasokSzama");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|