add InsertData(), UpdateData(), DeleteData() migration methods and improve RewriteValue() abstraction

This commit is contained in:
sbwalker
2025-08-12 14:59:51 -04:00
parent bf932719b2
commit 6142bfc5db
30 changed files with 155 additions and 64 deletions

View File

@ -22,9 +22,9 @@ namespace Oqtane.Migrations
return ActiveDatabase.RewriteName(name);
}
protected string RewriteValue(string value, string type)
protected string RewriteValue(object value)
{
return ActiveDatabase.RewriteValue(value, type);
return ActiveDatabase.RewriteValue(value);
}
}
}