* Obsoleted and deleted internal migrations + Enabled breaking changes checks agains v11.0.0-rc1 * Obsoleted and deleted internal exif stuff * Added CompatibilitySuppressions.xml * Change GenerateCompatibilitySuppressionFile
19 lines
453 B
C#
19 lines
453 B
C#
namespace Umbraco.Cms.Infrastructure.Migrations.Upgrade.V_8_0_0;
|
|
|
|
[Obsolete("This is not used anymore and will be removed in Umbraco 13")]
|
|
public class DropMigrationsTable : MigrationBase
|
|
{
|
|
public DropMigrationsTable(IMigrationContext context)
|
|
: base(context)
|
|
{
|
|
}
|
|
|
|
protected override void Migrate()
|
|
{
|
|
if (TableExists("umbracoMigration"))
|
|
{
|
|
Delete.Table("umbracoMigration").Do();
|
|
}
|
|
}
|
|
}
|