19 lines
484 B
C#
19 lines
484 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181129115723)]
|
|
public class OM_829_II : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarend.sql", "uspInsertEgyediNap.sql", "uspDeleteEgyediNap.sql");
|
|
CreateSchemaStoredProcedures("sp_GetOrarend", "uspInsertEgyediNap", "uspDeleteEgyediNap");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|