init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
using FluentMigrator;
|
||||
|
||||
namespace Kreta.DataAccess.Migrations.Migrations
|
||||
{
|
||||
[Migration(20171108145935, TransactionBehavior.None)]
|
||||
public class KRETA_4002 : CustomMigration
|
||||
{
|
||||
public override void Up()
|
||||
{
|
||||
ExecuteScripts(
|
||||
"01_CleanUpOldSbObjects.sql",
|
||||
"02_EnableServiceBroker.sql",
|
||||
"03_CreateSbObjects.sql",
|
||||
"04_CreatingErrorLoggingObjects.sql",
|
||||
"05_CreateDialogPool.sql",
|
||||
"06_sp_Global_GenerateAsyncAuditTrigger.sql",
|
||||
"07_sp_Global_GenerateAsyncAuditAuditPocessing.sql",
|
||||
"08_sp_Global_GenerateAsyncAuditProcedure.sql",
|
||||
"09_Activation.sql");
|
||||
}
|
||||
|
||||
public override void Down()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue