23 lines
498 B
C#
23 lines
498 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190506132724)]
|
|
public class OM_2639 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterAndCreateTables.sql",
|
|
"createSchemaViews.sql",
|
|
"sp_Global_CreateSchemaViews.sql",
|
|
"sp_Global_CreateDictionaryItems.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|