fix #1659 installation issue on PostgreSQL by ntroducing a new RewriteValue method which can be overridden in a database provider to provide custom behavior. Updated PostgreSQL provide to utilize new method. Also added an Oqtane.Server project reference to the module and theme external templates to streamline the development experience (credit @leighpointer).

This commit is contained in:
Shaun Walker
2021-09-17 13:56:19 -04:00
parent b4f7344ae4
commit db85e088bf
8 changed files with 73 additions and 50 deletions

View File

@ -19,7 +19,7 @@ namespace Oqtane.Migrations.Tenant
var pageEntityBuilder = new PageEntityBuilder(migrationBuilder, ActiveDatabase);
pageEntityBuilder.AddBooleanColumn("IsClickable", true);
pageEntityBuilder.UpdateColumn("IsClickable", "1");
pageEntityBuilder.UpdateColumn("IsClickable", "1", "bool", "");
}
protected override void Down(MigrationBuilder migrationBuilder)