19 lines
494 B
C#
19 lines
494 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200221131152)]
|
|
public class KRETA2_2959 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetNemNaplozottOrarendiOrak.sql", "uspGetNemNaplozottOrarendiOrak_Core.sql");
|
|
CreateSchemaSPFN("uspGetNemNaplozottOrarendiOrak", "uspGetNemNaplozottOrarendiOrak_Core");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|