19 lines
487 B
C#
19 lines
487 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180809165652)]
|
|
public class KRETA_6387 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("KRETA_6387.sql", "sp_GetOraEvesSorszama.sql", "sp_GetOraEvesSorszamaLista.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOraEvesSorszama", "sp_GetOraEvesSorszamaLista");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|