20 lines
419 B
C#
20 lines
419 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200707093104)]
|
|
public class KRETA2_4929_I : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("CreateAndAlterTables.sql");
|
|
|
|
DeleteViews("T_SZAKMARIRANYTIPUS", "T_SZAKMARIRANYTIPUS_OSSZES");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|