bool canAlter(String table) { if (tables == null) return true; for (final t in tables!) { if (t.name == table) return t.alter; } return false; }