23 lines
519 B
C#
23 lines
519 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191115144320)]
|
|
public class DB_1652 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"uspCloneIntezmeny.sql",
|
|
"uspCloneIntezmenyChangeIds.sql",
|
|
"uspCloneIntezmenyCreateMapping.sql",
|
|
"uspCloneIntezmenyMigration.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|