24 lines
664 B
C#
24 lines
664 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180208144722)]
|
|
public class KRETA_4904 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql",
|
|
"AlterAndCreateTables.sql",
|
|
"CreateViews.sql",
|
|
"GimnaziumiEvfolyamTipusDictionaryItemsCreate.sql",
|
|
"UpdateNyelviElokeszitosOsztalyokka.sql",
|
|
"UpdateAlapertelemezettGimnaziumErtek.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|