25 lines
553 B
C#
25 lines
553 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180806185759)]
|
|
public class KRETA_2715_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_TantargyfelosztasImport.sql",
|
|
"sp_OrarendImport.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_TantargyfelosztasImport",
|
|
"sp_OrarendImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|