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