19 lines
422 B
C#
19 lines
422 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200214182611)]
|
|
public class KRETA2_2953 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanuloErtekelesMondatbankData.sql");
|
|
CreateSchemaSPFN("uspGetTanuloErtekelesMondatbankData");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|