23 lines
475 B
C#
23 lines
475 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180605133900)]
|
|
public class KRETA_5842 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_TantargyfelosztasImport.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_TantargyfelosztasImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|