21 lines
589 B
C#
21 lines
589 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200219191322)]
|
|
public class KRETA2_3008 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("uspCreateDictionaryItems.sql", "uspGenerateTanevAdatok.sql", "sp_GetFelhasznaloJogok.sql");
|
|
ExecuteScripts("dictionaryitems_frissites.sql");
|
|
ExecuteScripts("AddRoles.sql");
|
|
CreateSchemaSPFN("uspGenerateTanevAdatok", "sp_GetFelhasznaloJogok");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|