20 lines
522 B
C#
20 lines
522 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180126153420)]
|
|
public class OM_282 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarendTanoranKivuli.sql", "sp_GetOrarend.sql", "sp_GetNemNaplozottOrarendiOrak.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetOrarendTanoranKivuli", "sp_GetOrarend", "sp_GetNemNaplozottOrarendiOrak");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|