23 lines
580 B
C#
23 lines
580 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20180213163815)]
|
|
public class KRETA_4904_Ped : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("sp_Global_CreateDictionaryItems.sql",
|
|
"sp_Global_CreateSchemaViews.sql",
|
|
"VegzettsegTipusDictionaryItemsCreate.sql",
|
|
"CreateTable.sql",
|
|
"CreateView.sql",
|
|
"AlterTableAndCreateTable.sql");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|