18 lines
389 B
C#
18 lines
389 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170705131744)]
|
|
public class KRETA_1857 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DisableTrigger_UpdateOrarendiora.sql", "EnableTrigger.sql", "UpdateTable.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|