Reputation: 29
Please tell me, how can I delete the entire database from firebase immediately, documentation or other information could not be found, can anyone come across this before?
it,s easy
db = Database.database().reference()
let usersReference = db
usersReference!.removeValue()
Upvotes: 0
Views: 61
Reputation: 29
db = Database.database().reference()
let usersReference = db
usersReference!.removeValue()
Upvotes: 1