20 lines
523 B
C#
20 lines
523 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200710102839)]
|
|
public class KRETA2_2194 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_SetSystemSettingsDefaultData.sql", "sp_SetSystemSettingsDefaultData.sql");
|
|
CreateSchemaSPFN("sp_SetSystemSettingsDefaultData");
|
|
|
|
ExecuteScripts("rendszerbeallitas_frissites.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|