alexpeng
alexpeng

Reputation: 13

How to disable a firebase realtime database

I have created a demo realtime database on firebase console. There is no data in it yet. I want to deactivate & delete this demo realtime database, but don't know how.

The Disable button is grey, indicating I need to remove data before disabling. But I cannot find the data anywhere.

a demo realtime database cannot be deactivated

Upvotes: 0

Views: 1649

Answers (1)

Osvaldo
Osvaldo

Reputation: 519

Check if this post is usefull.

It seems that all you have to do is set these rules in the rules tab of your database:

{
  "rules": {
    ".read": false,
    ".write": false
  }
}

Upvotes: 2

Related Questions