19 lines
469 B
C#
19 lines
469 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200811114934)]
|
|
public class KRETA2_5234 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspCreateDictionaryItems.sql", "uspGenerateTanevAdatok.sql", "DeleteRoles.sql", "DeleteDictionaries.sql");
|
|
RegisterSPFN("sp_GetFelhasznaloJogok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|