20 lines
564 B
C#
20 lines
564 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170731093434)]
|
|
public class KRETA_2449 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("SetAdminUserIDs.sql");
|
|
ExecuteScripts("sp_SetSystemSettingsDefaultData.sql", "sp_AktivTanevValtasa.sql", "sp_ElozoTanevesViewokTorlese.sql");
|
|
CreateSchemaStoredProcedures("sp_SetSystemSettingsDefaultData", "sp_AktivTanevValtasa");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|