20 lines
441 B
C#
20 lines
441 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20210824094710)]
|
|
public class DB_4100_2 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DB_4100_2.sql");
|
|
RegisterSPFN("sp_AktivTanevValtasa");
|
|
DeleteViews("T_MOBILDBINFO", "T_MOBILDBINFO_OSSZES");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|