20 lines
479 B
C#
20 lines
479 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200527161609)]
|
|
public class KRETA_4368 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DropTable.sql");
|
|
DeleteViews("T_TEREM_FOGLALKOZAS", "T_TEREM_FOGLALKOZAS_OSSZES");
|
|
RegisterSPFN("uspTantargyfelosztasImport", "sp_DeleteAllTTF");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|