19 lines
547 B
C#
19 lines
547 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170801122050)]
|
|
public class KRETA_2449_1 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_CsoportKisorolasok.sql", "GrantExecuteOnSpecificSp.sql", "DisableAsyncAuditTriggers.sql", "SetAdminUserIDs.sql", "sp_AktivTanevValtasa.sql");
|
|
CreateSchemaStoredProcedures("sp_CsoportKisorolasok", "sp_AktivTanevValtasa");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|