31 lines
		
	
	
		
			856 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			856 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using FluentMigrator;
 | 
						|
 | 
						|
namespace Kreta.DataAccess.Migrations.Migrations
 | 
						|
{
 | 
						|
    [Migration(20190417094308)]
 | 
						|
    public class AL_941 : CustomMigration
 | 
						|
    {
 | 
						|
        public override void Up()
 | 
						|
        {
 | 
						|
            ExecuteScripts(
 | 
						|
                "sp_Global_CreateDictionaryItems.sql",
 | 
						|
                "sp_Global_SetSystemSettingsDefaultData.sql",
 | 
						|
                "dictionaryitems_frissites.sql",
 | 
						|
                "rendszerbeallitas_frissites.sql",
 | 
						|
                "uspGetSzamonkeresElorejelzesGrid.sql",
 | 
						|
                "uspGetTanulokSzamonkeresElorejelzesei.sql",
 | 
						|
                "AL_941.sql"
 | 
						|
                );
 | 
						|
            CreateSchemaStoredProcedures(
 | 
						|
                "uspGetSzamonkeresElorejelzesGrid",
 | 
						|
                "uspGetTanulokSzamonkeresElorejelzesei"
 | 
						|
                );
 | 
						|
        }
 | 
						|
 | 
						|
        public override void Down()
 | 
						|
        {
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 |