resolve regression installation issue with PostgreSQL
This commit is contained in:
parent
7c6424e05c
commit
de2c56560e
|
@ -87,6 +87,11 @@ namespace Oqtane.Database.PostgreSQL
|
||||||
return _rewriter.RewriteName(name);
|
return _rewriter.RewriteName(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override string RewriteName(string name, bool isQuery)
|
||||||
|
{
|
||||||
|
return _rewriter.RewriteName(name);
|
||||||
|
}
|
||||||
|
|
||||||
public override string RewriteValue(string value, string type)
|
public override string RewriteValue(string value, string type)
|
||||||
{
|
{
|
||||||
if (type == "bool")
|
if (type == "bool")
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace Oqtane.Migrations.EntityBuilders
|
||||||
|
|
||||||
private string RewriteName(string name)
|
private string RewriteName(string name)
|
||||||
{
|
{
|
||||||
return RewriteName(name, false);
|
return ActiveDatabase.RewriteName(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
private string RewriteName(string name, bool isQuery)
|
private string RewriteName(string name, bool isQuery)
|
||||||
|
|
|
@ -14,7 +14,12 @@ namespace Oqtane.Migrations
|
||||||
|
|
||||||
protected string RewriteName(string name)
|
protected string RewriteName(string name)
|
||||||
{
|
{
|
||||||
return ActiveDatabase.RewriteName(name);
|
return ActiveDatabase.RewriteName(name, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected string RewriteName(string name, bool isQuery)
|
||||||
|
{
|
||||||
|
return ActiveDatabase.RewriteName(name, isQuery);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user