25 lines
539 B
C#
25 lines
539 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190523190922)]
|
|
public class AL_1030R_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"sp_DynamicImport.sql",
|
|
"uspTanuloKifirImport.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures(
|
|
"sp_DynamicImport",
|
|
"uspTanuloKifirImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|