init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user