25 lines
580 B
C#
25 lines
580 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190430113906)]
|
|
public class OM_2642 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"createTables.sql",
|
|
"createSchemaViews.sql",
|
|
"sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql",
|
|
"dictionaryitems_frissites.sql",
|
|
"updateDictionary.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|