27 lines
647 B
C#
27 lines
647 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180510210607)]
|
|
public class KRETA_2723_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_DynamicImport.sql",
|
|
"sp_DynamicImportJsonSplit.sql",
|
|
"sp_TantargyfelosztasImport.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_DynamicImport",
|
|
"sp_DynamicImportJsonSplit",
|
|
"sp_TantargyfelosztasImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|