Adding tables

Now we will create three tables to store our data, called

  • organisations
  • sites
  • contacts

This demonstrates that you can use tables to link related data (we’ll get to the links in a bit).

Organisations will contain company names and basic details

Sites will contain a list of addresses, because we may want allow an organisation to have more than one address

Contacts will contain a list of people, each linked to an organisation and optionally a site.

Separating the data into three tables lets us create these ‘one-to-many’ relationships, where one organisation can have many sites and contacts.

Don’t worry about the relationships between tables at this stage, the first thing to do is just to create those three tables and leave them empty for now.

Use the tables page for instructions on creating a table.


Last modified October 29, 2020: Quickstart (0f849b8)