using FluentMigrator; namespace Kreta.DataAccess.Migrations.Migrations { [Migration(20170912130551)] public class KRETA_3118 : CustomMigration { public override void Up() { ExecuteScripts( "sp_GetOsztalyNaplo.sql", "sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika.sql" ); CreateSchemaStoredProcedures( "sp_GetOsztalyNaplo", "sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika" ); } public override void Down() { } } }