19 lines
414 B
C#
19 lines
414 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180531134721)]
|
|
public class OM_953 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_SetSystemSettingsDefaultData.sql");
|
|
ExecuteScripts("rendszerbeallitas_frissites.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|