public void ThenTheDefinitionOfTableShouldMatch(string tableName, Table table)
 {
     var definition = new TableDefinition(tableName);
     definition.Columns.AddFromRaw(table.CreateSet<ColumnDefinitionRaw>());
     definition.VerifyMatch(database);
 }