21 lines
461 B
C#
21 lines
461 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20201221171118)]
|
|
public class DB_3441 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("01_EntityAttrubuteHistory.sql",
|
|
"02_V_ENTITYHISTORY.sql",
|
|
"03_usp_AuditPocessing.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|