I have decided to use firebase firestore for my new android app after using mysql for a while.
In mysql, I could go to the database and add a new column directly and it will have effect on all existing records.
For firestore, I dont see the option to add a new field to all existing documents. I am only seeing add field for a single docuement. This will be so hard if you have so many records, updating each documents with a new field will be time consuming.
So, I ask is there a place in firestore where I can add a new fields to all existing documents in a collection.
E.G I have users collection with each document containing first_name, last_name etc.
Now, I have decided to add the phone_number field to all documents with an empty value for ALL the documents, how do I do that with cloud firestore console.??