just change these lines in democracy.php:
$first_time = $wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyQ'”) != $table_prefix.”democracyQ”;
to:
$first_time = strtolower($wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyQ'”)) != strtolower($table_prefix.”democracyQ”);
and
$upgrading = !$first_time && $wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyIP'”) != $table_prefix.”democracyIP”;
to:
$upgrading = !$first_time && strtolower($wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyIP'”)) != strtolower($table_prefix.”democracyIP”);