20 lines
505 B
C#
20 lines
505 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190403171018)]
|
|
public class OM_2450 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("addDefaultOktatasiNevelesiFeladat.sql");
|
|
ExecuteScripts("sp_Global_CreateDictionaryItems.sql", "uspGenerateTanevAdatok.sql");
|
|
ExecuteScripts("dictionaryitems_frissites.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|