Home > Mobile >  Can I reset Real time database storage in Firebase?
Can I reset Real time database storage in Firebase?

Time:05-14

I am using Firebase spark FREE plan and want to know what if I want to reset my data again to 0 Byte and clear all storage from Real Time database? Storage used screenshot for example if I want to reset all data and make it 0 again as it was when I made project, what steps to follow and is it possible?

CodePudding user response:

You can delete all data the database in either the Firebase console, or through its API by calling remove on the root.

If you've done that and there still are some bytes showing in the console screenshots, those might be some leftover metadata for the database. If that is the case, there's nothing you can do about it, and you only have 1GM - 515 bytes that you can still add to it on the free plan.

  • Related