Skip to content

Instantly share code, notes, and snippets.

@geeksilva97
Created January 22, 2022 01:03
Show Gist options
  • Save geeksilva97/35df0603157f87180d6f19bdfd501923 to your computer and use it in GitHub Desktop.
Save geeksilva97/35df0603157f87180d6f19bdfd501923 to your computer and use it in GitHub Desktop.

Schemas

Schema do usuário

documentid: Auth UID

{
  email: string,
  name: string,
  occupation: string | null
}

Schema do evento

documentId: gerado automaticamente

{
  bannerUrl: string,
  date: timestamp,
  description: string,
  organizer: map -> organizer.email, organizer.name,
  organizerId: string,
  subscribers: number,
  title: string
}

Schema da inscrição

documentId: Auth UID do usuário que está se inscrevendo

{
  email: string,
  name: string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment