init
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20190524141731)]
|
||||
public class AL_1030R_3 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
DeleteStoredProcedures(
|
||||
"sp_OrarendImport",
|
||||
"sp_TantargyfelosztasImport",
|
||||
"sp_DynamicImportJsonSplit",
|
||||
"sp_DynamicImport"
|
||||
);
|
||||
|
||||
ExecuteScripts(
|
||||
"uspDynamicImport.sql",
|
||||
"uspDynamicImportJsonSplit.sql",
|
||||
"uspTantargyfelosztasImport.sql",
|
||||
"uspOrarendImport.sql",
|
||||
"uspTanuloKifirImport.sql"
|
||||
);
|
||||
|
||||
CreateSchemaStoredProcedures(
|
||||
"uspDynamicImport",
|
||||
"uspDynamicImportJsonSplit",
|
||||
"uspTantargyfelosztasImport",
|
||||
"uspOrarendImport",
|
||||
"uspTanuloKifirImport"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user