19 lines
425 B
C#
19 lines
425 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190813132911)]
|
|
public class KRETA2_182_3 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspGetTanarAltalErtekelhetoCsoportok.sql");
|
|
CreateSchemaSPFN("uspGetTanarAltalErtekelhetoCsoportok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|