diff --git a/Oqtane.Client/Resources/Modules/Admin/Pages/Add.resx b/Oqtane.Client/Resources/Modules/Admin/Pages/Add.resx
index b818eacd..e16db76a 100644
--- a/Oqtane.Client/Resources/Modules/Admin/Pages/Add.resx
+++ b/Oqtane.Client/Resources/Modules/Admin/Pages/Add.resx
@@ -225,9 +225,6 @@
Personalizable?
-
- Appearance
-
Optionally enter content to be included in the page head (ie. meta, link, or script tags)
@@ -253,7 +250,7 @@
Permissions
- Theme Settings
+ Theme
The date that this page is active
@@ -267,4 +264,7 @@
Expiry Date:
-
+
+ Appearance
+
+
\ No newline at end of file
diff --git a/Oqtane.Client/Resources/Modules/Admin/Pages/Edit.resx b/Oqtane.Client/Resources/Modules/Admin/Pages/Edit.resx
index ded50502..0f6df7e5 100644
--- a/Oqtane.Client/Resources/Modules/Admin/Pages/Edit.resx
+++ b/Oqtane.Client/Resources/Modules/Admin/Pages/Edit.resx
@@ -309,4 +309,7 @@
Specify if changes made to page permissions should be propagated to the modules on this page
+
+ Theme
+
\ No newline at end of file
diff --git a/Oqtane.Server/Migrations/Tenant/10000202_ExpandPageName.cs b/Oqtane.Server/Migrations/Tenant/10000202_ExpandPageName.cs
new file mode 100644
index 00000000..c7111406
--- /dev/null
+++ b/Oqtane.Server/Migrations/Tenant/10000202_ExpandPageName.cs
@@ -0,0 +1,28 @@
+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.10.00.02.02")]
+ public class ExpandPageName : MultiDatabaseMigration
+ {
+ public ExpandPageName(IDatabase database) : base(database)
+ {
+ }
+
+ protected override void Up(MigrationBuilder migrationBuilder)
+ {
+ var pageEntityBuilder = new PageEntityBuilder(migrationBuilder, ActiveDatabase);
+ pageEntityBuilder.AlterStringColumn("Name", 100);
+ }
+
+ protected override void Down(MigrationBuilder migrationBuilder)
+ {
+ // not implemented
+ }
+ }
+}