mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-15 04:11:38 +00:00
19 lines
484 B
C#
19 lines
484 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
[SiteMigration("localhost:44357", "01.00.00")]
|
|
public class ExampleSiteMigration : ISiteMigration
|
|
{
|
|
void ISiteMigration.Up(Site site, Alias alias)
|
|
{
|
|
// execute some version-specific upgrade logic for the site here such as adding pages, modules, content, etc...
|
|
}
|
|
|
|
void ISiteMigration.Down(Site site, Alias alias)
|
|
{
|
|
// not implemented
|
|
}
|
|
}
|
|
}
|