19 lines
395 B
C#
19 lines
395 B
C#
using FluentMigrator;
|
|
|
|
namespace Kreta.DataAccess.Migrations.Migrations
|
|
{
|
|
[Migration(20200615135638)]
|
|
public class KRETA2_4372 : CustomMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
ExecuteScripts("DropTable.sql");
|
|
DeleteViews("T_UPLOADEDFILE", "T_UPLOADEDFILE_OSSZES");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|