How to apply SQL query on docker

The migration items that start with [SQL] are SQL queries, you need to run them on your database.

I’m guessing that pgAdmin query tool will allow you to run the queries on the database, otherwise you can use psql in your postgres docker container:

sudo docker exec [ID-of-postgres-container] psql -U postgres -d [name-of-database]

Then at the prompt type in the query.

Hope that helps?!