init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,31 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20220621084202, TransactionBehavior.None)]
|
||||
public class DB_4633_2 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"00_stop_queue.sql",
|
||||
"02_auditlog_users.sql",
|
||||
"03_auditlog_AuditServiceFailedItems.sql",
|
||||
"04_DB_4633_2.sql",
|
||||
"05_dbo_V_ENTITYHISTORY.sql",
|
||||
"06_dbo_V_ENTITYHISTORYBLOB.sql",
|
||||
"07_sp_Global_GenerateAsyncAuditTrigger.sql",
|
||||
"08_sp_Global_GenerateAsyncAuditTriggerAll.sql",
|
||||
"09_triggers.sql",
|
||||
"10_usp_LogError.sql",
|
||||
"11_usp_AuditProcessing.sql",
|
||||
"12_start_queue.sql"
|
||||
);
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue