19 lines
562 B
C#
19 lines
562 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170817170215)]
|
|
public class KRETA_2762 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_SetSystemSettingsDefaultData.sql", "sp_Global_GenerateTanevAdatokFromExistingTanev.sql", "sp_Global_GenerateTanevAdatok.sql", "sp_SetSystemSettingsDefaultData.sql");
|
|
CreateSchemaStoredProcedures("sp_SetSystemSettingsDefaultData");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|