like method
Implementation
bool like(TableDefinition other) {
var diff = generateTableMigration(this, other, []);
return diff != null && diff.isEmpty && other.name == name;
}
bool like(TableDefinition other) {
var diff = generateTableMigration(this, other, []);
return diff != null && diff.isEmpty && other.name == name;
}