23 lines
692 B
C#
23 lines
692 B
C#
using FluentMigrator;
|
|
using Nop.Core.Domain.Catalog;
|
|
using Nop.Core.Domain.Media;
|
|
using Nop.Data.Extensions;
|
|
using Nop.Data.Mapping;
|
|
|
|
namespace Nop.Data.Migrations.UpgradeTo460;
|
|
|
|
[NopSchemaMigration("2022-03-16 00:00:00", "Product video")]
|
|
public class VideoMigration : ForwardOnlyMigration
|
|
{
|
|
/// <summary>
|
|
/// Collect the UP migration expressions
|
|
/// </summary>
|
|
public override void Up()
|
|
{
|
|
if (!Schema.Table(NameCompatibilityManager.GetTableName(typeof(Video))).Exists())
|
|
Create.TableFor<Video>();
|
|
|
|
if (!Schema.Table(NameCompatibilityManager.GetTableName(typeof(ProductVideo))).Exists())
|
|
Create.TableFor<ProductVideo>();
|
|
}
|
|
} |