20 lines
658 B
C#
20 lines
658 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190823164949)]
|
|
public class KRETA2_876 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_CreateDictionaryItems.sql", "sp_Global_SetSystemSettingsDefaultData.sql");
|
|
ExecuteScripts("dictionaryitems_frissites.sql", "rendszerbeallitas_frissites.sql", "uspIsLEPKezelo.sql", "uspGetVezetettOsztalyCsoportokByAlkalmazott.sql");
|
|
CreateSchemaSPFN("uspIsLEPKezelo", "uspGetVezetettOsztalyCsoportokByAlkalmazott");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|