23 lines
641 B
C#
23 lines
641 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190710142303)]
|
|
public class KRETA2_288 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"createTables.sql", "CreateView.sql", "sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql", "dictionaryitems_frissites.sql",
|
|
"sp_Global_SetSystemSettingsDefaultData.sql", "rendszerbeallitas_frissites.sql",
|
|
"updateDictionaryItems.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|