25 lines
614 B
C#
25 lines
614 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20170405130927)]
|
|
public class KRETA_756_770 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("create_columns.sql");
|
|
|
|
ExecuteScripts("sp_Global_CreateDictionaryItems.sql", "dictionaryitems_frissites.sql");
|
|
|
|
ExecuteScripts("sp_CheckNebulo4TValidation.sql", "sp_NebuloImport.sql");
|
|
|
|
CreateSchemaStoredProcedures("sp_CheckNebulo4TValidation", "sp_NebuloImport");
|
|
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|