fix #3653 - mySQL installation failing on Rows reserved word
This commit is contained in:
@ -66,6 +66,11 @@ namespace Oqtane.Databases
|
||||
return name;
|
||||
}
|
||||
|
||||
public virtual string RewriteName(string name, bool isQuery)
|
||||
{
|
||||
return name;
|
||||
}
|
||||
|
||||
public virtual string RewriteValue(string value, string type)
|
||||
{
|
||||
return value;
|
||||
|
@ -28,6 +28,8 @@ namespace Oqtane.Databases.Interfaces
|
||||
|
||||
public string RewriteName(string name);
|
||||
|
||||
public string RewriteName(string name, bool isQuery);
|
||||
|
||||
public string RewriteValue(string value, string type);
|
||||
|
||||
public void UpdateIdentityStoreTableNames(ModelBuilder builder);
|
||||
|
Reference in New Issue
Block a user