-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update master sources for nopCommerce 4.30
- Loading branch information
1 parent
bec9591
commit 2bf704e
Showing
15 changed files
with
95 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using FluentMigrator; | ||
using Nop.Data.Migrations; | ||
using Nop.Plugin.Widgets.qBoSlider.Domain; | ||
|
||
namespace Nop.Plugin.Widgets.qBoSlider.Data | ||
{ | ||
[SkipMigrationOnUpdate] | ||
[NopMigration("2020/05/24 15:33:23:6455432", "Widgets.qBoSlider base schema")] | ||
public class SchemaMigration : AutoReversingMigration | ||
{ | ||
protected IMigrationManager _migrationManager; | ||
|
||
public SchemaMigration(IMigrationManager migrationManager) | ||
{ | ||
_migrationManager = migrationManager; | ||
} | ||
|
||
public override void Up() | ||
{ | ||
_migrationManager.BuildTable<Slide>(Create); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.