25 lines
		
	
	
		
			568 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			568 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using FluentMigrator;
 | |
| 
 | |
| namespace Kreta.DataAccess.Migrations.Migrations
 | |
| {
 | |
|     [Migration(20201003224154)]
 | |
|     public class KRETA2_6111 : CustomMigration
 | |
|     {
 | |
|         public override void Up()
 | |
|         {
 | |
|             RegisterSPFN(
 | |
|                  "fnGetTanuloOsztalyString"
 | |
|                 , "uspGetTanulokEsOsztalyokCsoportokGrid"
 | |
|                 , "uspGetFelhasznaloBelepesData"
 | |
|                 , "uspGetGondviselokElerhetosegeiExport"
 | |
|                 , "uspTanuloKereses"
 | |
|             );
 | |
|         }
 | |
| 
 | |
|         public override void Down()
 | |
|         {
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 |