Refactoring migrations by adding an abstract class to all expressions that allow for processing prior to returning an sql statement.

Refactoring the current sql syntax providers to better work with sql ce, sql server and mysql.
Adding migrations for v4.8 and v6.0.
Adding test cases for upgrading from 4.7 to 6.0 for the 3 database providers - sql ce, sql server and mysql.
Adding product name to the MigrationAttribute, which adds more flexibility to the MigrationRunner.
Fixing schema creation for mysql, which broke during a previous refactor task.
This commit is contained in:
Morten Christensen
2012-12-27 18:52:47 -01:00
parent 5b1ce5fe67
commit 64af0a610b
77 changed files with 875 additions and 305 deletions

View File

@@ -46,5 +46,6 @@ namespace Umbraco.Core.Persistence.SqlSyntax
string FormatColumnRename(string tableName, string oldName, string newName);
string FormatTableRename(string oldName, string newName);
bool SupportsClustered();
bool SupportsIdentityInsert();
}
}