21 lines
406 B
C#
21 lines
406 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20190305101427)]
|
|
public class OM_2326 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts(
|
|
"alterTables.sql",
|
|
"sp_Global_CreateSchemaViews.sql"
|
|
);
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|