20 lines
		
	
	
		
			426 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using FluentMigrator;
 | |
| 
 | |
| namespace Kreta.DataAccess.Migrations.Migrations
 | |
| {
 | |
|     [Migration(20210430143420)]
 | |
|     public class DB_3775 : CustomMigration
 | |
|     {
 | |
|         public override void Up()
 | |
|         {
 | |
|             ExecuteScripts("DB_3775.sql");
 | |
|             RegisterSPFN("uspGetLemorzsolodottTanulokByFelhely", "fnGetLemorzsolodottTanulokByFelhely");
 | |
|         }
 | |
| 
 | |
|         public override void Down()
 | |
|         {
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 |