Cat Schema Instructions

You are in charge of implementing the schema found in database-schema.png. You will implement the database using SQL. After it, you will drop the database and implement it again using Sequelize.

Before you start, create a user called “cats_app” with a password and CREATEDB privileges.

    const { Cat, Toys } = require('./models');

Using the Sequelize query syntax, prepare three functions that will return the values specified in these queries:

- Find the catId that owns the Box.
- Find the toyId for every toy that Rocky owns.
- Find the name of the owner for every toy.