A
This API adheres to REST standards as well as possible (without going completely overboard). All endpoints correspond to CRUD operations on various resources.
All database modifications must be done within migration scripts, which knex conveniently provides. For more clarification visit the knex docs.
Before performing any migrations, you will need to install knex globally through npm:
npm install -g knex
knex migrate:make migration_name
knex migrate:latest
Note: By default migrations are run on the development database.