dzinampini
dzinampini

Reputation: 87

Viewing database in Firebase Console

So this morning I woke up to a minor Firebase Console design. The left side menu usually has Authentication Database Functions I don't remember the fourth item

But today there is Realtime Database and a couple of added items see attached image. When I click Realtime Database I can not see my existing database but instead see a CTA to create a database and some documentation links.

I am using the following link to access the console https://console.firebase.google.com/u/0/project/my-project-name

How can I can access my database?

Upvotes: 0

Views: 1223

Answers (1)

Renaud Tarnec
Renaud Tarnec

Reputation: 83153

From the tag used in your question I understand that you are using Cloud Firestore (and not the Realtime Database).

Firebase offers two cloud-based database services, which both support realtime data syncing: Cloud Firestore and the Realtime Database (the Firebase's original database)

Before yesterday (12 August 2020), on the Firebase console, there was only one vertical menu item for these two database Services.

Yesterday, this unique vertical menu item for Database Services was splitted in two: one vertical menu item for Firestore and one for the Realtime Database.

The URLs for each database "console page" have therefore changed. To access your Firestore database console you should select the "Cloud Firestore" vertical menu item.

Upvotes: 1

Related Questions