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