20 lines
498 B
C#
20 lines
498 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20171005215016)]
|
|
public class KRETA_3616 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetMunkaidoElszamoloLap.sql", "sp_GetElfogadottTantargyfelosztasok.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetMunkaidoElszamoloLap", "sp_GetElfogadottTantargyfelosztasok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|