Getting started with a Database

Hi there - Newbie here… I am creating a traveler app the will allow users to store their traveler data such as TSA #, legal names, frequent flyer #, dates of birth etc. In addition to the “users” I would like to include the option to store other family members information (non-user), as well as guest travelers (non-users).

I would like to create a spreadsheet with my data mapped out, and then upload it to my Bubble app.
Is there any documentation or videos on how to create both of these databases?

You need the below data types to handle this scenarios:

User Data Type:

Field Type
linked_Traveler Traveler
Other built ins data types

Traveler Data Type:

Field Type
TSA # text
legal_names text
frequent_flyer yes/no
date_of_birth date

Family Member Data Type

Field Type
linked_user User (The user who is adding this family member)
registered_family_member User (This will be empty for guest family members)
guest_family_member_email text (This will be empty for registered family members as we will get that from registered_family_member)
guest_family_member_name text (This will be empty for registered family members as we will get that from registered_family_member)

After that you can use bulk csv import feature in bubble which is included in their paid plan.