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