19 lines
490 B
C#
19 lines
490 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20191205125937)]
|
|
public class KRETA2_1908_4 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_GetTanulokMulasztasaiKesesei.sql", "sp_GetMulasztasokNaploNezetData.sql");
|
|
CreateSchemaSPFN("sp_GetTanulokMulasztasaiKesesei", "sp_GetMulasztasokNaploNezetData");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|