18 lines
416 B
C#
18 lines
416 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200204171244)]
|
|
public class DB_2010 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_GenerateAsyncAuditTriggerAll.sql", "sp_Global_GenerateAsyncAuditTrigger.sql", "EnableTrigger.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|