22 lines
653 B
C#
22 lines
653 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190531024514)]
|
|
public class KRETA_8173 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterAndCreateTables.sql", "createView.sql", "sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql", "dictionaryitems_frissites.sql",
|
|
"sp_Global_SetSystemSettingsDefaultData.sql", "rendszerbeallitas_frissites.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|