37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181004154041)]
|
|
public class OM_1443 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("01_message_type_alter.sql",
|
|
"02_usp_send.sql",
|
|
"03_sp_Global_GenerateAsyncAuditTriggerJson.sql",
|
|
"04_sp_AuditPocessingJson.sql",
|
|
"05_sp_Global_GenerateAsyncAuditTriggerAll.sql",
|
|
"06_exec.sql");
|
|
ExecuteScripts("alterAndCreateTable.sql",
|
|
"createSchemaViews.sql",
|
|
"sp_Global_CreateSchemaViews.sql",
|
|
"fnGetDokumentumGondviselok.sql",
|
|
"sp_GetTanuloszerzodes.sql",
|
|
"sp_ImportFelhasznaloBelepes.sql",
|
|
"sp_ImportTanulokGondviseloi.sql");
|
|
|
|
CreateSchemaFunctions("fnGetDokumentumGondviselok");
|
|
|
|
CreateSchemaStoredProcedures("sp_GetTanuloszerzodes",
|
|
"sp_ImportFelhasznaloBelepes",
|
|
"sp_ImportTanulokGondviseloi");
|
|
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|