20 lines
422 B
C#
20 lines
422 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200610173413)]
|
|
public class KRETA2_4370 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DropTable.sql");
|
|
DeleteViews("T_CSOPORTOK_OSZTALYOK");
|
|
RegisterSPFN("sp_DeleteAllTTF");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|