...
|
...
|
@@ -146,7 +146,7 @@ func checkStructChange(cmd *command.TableEventCommand) bool { |
|
|
func tableFields(t *domain.Table) []string {
|
|
|
var result = make([]string, 0)
|
|
|
for _, f := range t.Fields(false) {
|
|
|
result = append(result, f.SQLName)
|
|
|
result = append(result, f.Name)
|
|
|
}
|
|
|
return result
|
|
|
} |
...
|
...
|
|