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