19 lines
424 B
C#
19 lines
424 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191211091059)]
|
|
public class KRETA2_1785 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetGondviselokElerhetosegeiExport.sql");
|
|
CreateSchemaSPFN("uspGetGondviselokElerhetosegeiExport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|