18 lines
406 B
C#
18 lines
406 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20171004155228)]
|
|
public class KRETA_3542 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DisableTriggers.sql", "Update_OrarendiOra.sql", "Update_TanitasiOra.sql", "EnableTriggers.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|