76777879808182838485
newColumns.set(newPos < 0 ? idx : newPos, column); } for (int idx = 0; idx < table.getColumnCount(); idx++) { table.removeColumn(idx); } table.addColumns(newColumns); } }
6162636465666768
public void apply(Database database, boolean caseSensitive) { Table table = database.findTable(getChangedTable().getName(), caseSensitive); Column column = table.findColumn(_column.getName(), caseSensitive); table.removeColumn(column); } }