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