19 lines
442 B
C#
19 lines
442 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200423151558)]
|
|
public class KRETA2_3977 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGondviseloImport.sql", "uspTanuloKifirImport.sql");
|
|
CreateSchemaSPFN("uspGondviseloImport", "uspTanuloKifirImport");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|