19 lines
557 B
C#
19 lines
557 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170620123121)]
|
|
public class KRETA_1988 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOraEvesSorszama.sql", "sp_GetElozoOraAdatai.sql", "sp_GetFelhasznaloFoglalkozasokErtekelesekhez.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOraEvesSorszama", "sp_GetElozoOraAdatai", "sp_GetFelhasznaloFoglalkozasokErtekelesekhez");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|