20 lines
586 B
C#
20 lines
586 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191202141205)]
|
|
public class DB_1719 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetDolgozatErtekelesAtlag.sql", "uspGetTanarAltalErtekelhetoCsoportokTantargyak.sql");
|
|
CreateSchemaSPFN("uspGetDolgozatErtekelesAtlag", "uspGetTanarAltalErtekelhetoCsoportokTantargyak");
|
|
DeleteFunctions("fnGetTanarAltalErtekelhetoCsoportokTantargyak");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|