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

@ -27,6 +27,8 @@ namespace Oqtane.Databases.Interfaces
public string RewriteName(string name);
public string RewriteValue(string value, string type);
public void UpdateIdentityStoreTableNames(ModelBuilder builder);
public DbContextOptionsBuilder UseDatabase(DbContextOptionsBuilder optionsBuilder, string connectionString);