19 lines
435 B
C#
19 lines
435 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190827105546)]
|
|
public class KRETA2_914 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetOrarend.sql", "sp_GenerateNaptariNapok.sql");
|
|
CreateSchemaSPFN("sp_GetOrarend", "sp_GenerateNaptariNapok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|