How to remove a database from Firebase?

It must be looking in my face, but I don’t see the team. How to remove an unused Firebase database from the console in a new Firebase? And Google did not help with the answer, which is kind of the first.

+21
source share
4 answers

THIS REMOVES THE WHOLE PROJECT

To delete ONLY the database, simply delete the object / top-level node.


Click on your project (white box below, hiding the name):

project

Then click on the gear icon (settings) and click on "Project Settings":

settings

Scroll down and click on “DELETE PROJECT”:

delete

+12
source

Another way, if you do not want to delete the project and just the database, is to create a file on your computer empty.json as follows:

 {} 

Then click on ... and "Import JSON" Import json

Then "Browse" and upload an empty file: enter image description here

You overwrite your database with an empty JSON file, effectively "deleting" the old database.

+17
source

It is currently not possible to delete other real-time database instances created through the Firebase console.

They have plans to add features, but this will happen in the future. For now, you can see their updates here:

Their support suggested that I erase all data and lock the database to prevent any use as a temporary solution.

Just remember that multiple instances are only possible with a Blaze account.

+11
source

Looks like Google recently introduced this feature to remove RTDB Firebase. To remove this (after we raised this issue with the Google Firebase team on Firebase RoadShow India 😃).

To do this, follow these steps:

  1. Go to your RTDB Firebase that you want to remove
  2. Delete all your data from the database
  3. Select 3 points in the upper right corner

enter image description here

  1. Click the "Disconnect Database" button

  2. After the database is disconnected, click these 3 points again and click "Delete Database".

enter image description here

Hooray!

0
source

All Articles