19 lines
392 B
C#
19 lines
392 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190522143050)]
|
|
public class OM_2360 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_DynamicImport.sql");
|
|
CreateSchemaStoredProcedures("sp_DynamicImport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|