added ability to specify a site home page, updated default template content to include .NET MAUI
This commit is contained in:
29
Oqtane.Server/Migrations/Tenant/03020001_AddSiteHomePage.cs
Normal file
29
Oqtane.Server/Migrations/Tenant/03020001_AddSiteHomePage.cs
Normal file
@ -0,0 +1,29 @@
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Oqtane.Databases.Interfaces;
|
||||
using Oqtane.Migrations.EntityBuilders;
|
||||
using Oqtane.Repository;
|
||||
|
||||
namespace Oqtane.Migrations.Tenant
|
||||
{
|
||||
[DbContext(typeof(TenantDBContext))]
|
||||
[Migration("Tenant.03.02.00.01")]
|
||||
public class AddSiteHomePage : MultiDatabaseMigration
|
||||
{
|
||||
public AddSiteHomePage(IDatabase database) : base(database)
|
||||
{
|
||||
}
|
||||
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
var siteEntityBuilder = new SiteEntityBuilder(migrationBuilder, ActiveDatabase);
|
||||
siteEntityBuilder.AddIntegerColumn("HomePageId", true);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
var siteEntityBuilder = new SiteEntityBuilder(migrationBuilder, ActiveDatabase);
|
||||
siteEntityBuilder.DropColumn("HomePageId");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user