Changed meta_key value in structures, now dashboard shows zero users

You have destroyed a significant section of your database. Unless you have a backup you cannot get it back.

What happened when you changed the varchar to an int was that every entry not recognized as an integer was converted to 0. You can see that in your screenshot. That is not reversible. Data was lost.

In the future:

  1. Make a backup
  2. Don’t mess with things you don’t understand. Take the time to
    understand
    first then mess with things.