I can create faunadb database with python API as follows:
client.query(q.create_database({ "name": "annuvin" }))
Also, I can create collection as follows:
client.query(q.create_collection({ "name": "spells" }))
So, how can I attach "spells" collection to the "annuvin" database? Thank you for your pointing!