18 lines
499 B
C#
18 lines
499 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191118101202)]
|
|
public class KRETA2_1987 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
DeleteStoredProcedures("sp_GetErtesitoNyomtatvany", "sp_GetTanulokFelmentesekHatarozatok", "sp_GetTanulokJegyeiReszletezes", "sp_GetTanulokTantargyMulasztasokReszletezese", "sp_GetUzenofuzetErtekelolap");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|