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