28 lines
722 B
C#
28 lines
722 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20181119102106)]
|
|
public class OM_1666 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterAndCreateTables.sql",
|
|
"createSchemaViews.sql",
|
|
"sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql",
|
|
"dictionaryitems_frissites.sql",
|
|
"sp_ImportFelhasznaloBelepes.sql",
|
|
"setNewColumns.sql"
|
|
);
|
|
|
|
CreateSchemaStoredProcedures("sp_ImportFelhasznaloBelepes");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|