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