private void AlterTable <T>(string tableName, PropertyInfo[] properties) where T : class, new() { TableDefinition newDefinition = CreateTable <T>(tableName, properties); _dataMigrator.MigrateData <T>(tableName, newDefinition); return; }