19 lines
433 B
C#
19 lines
433 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181010135128)]
|
|
public class KRETA_7184 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanuloErtekelesMondatbankData.sql");
|
|
CreateSchemaStoredProcedures("sp_GetTanuloErtekelesMondatbankData");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|