19 lines
411 B
C#
19 lines
411 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200616094121)]
|
|
public class KRETA2_3033 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DeletePenzugySzerepkor.sql");
|
|
RegisterSPFN("sp_GetUserRoles", "sp_GetFelhasznaloJogok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|