23 lines
448 B
C#
23 lines
448 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191111200223)]
|
|
public class KRETA2_1460_4 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspTanmenetImport.sql"
|
|
);
|
|
|
|
CreateSchemaSPFN(
|
|
"uspTanmenetImport"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|