bookmark_manager

domain_model

Instructions

Create database

  1. Connect to psql
  2. Create the database using the psql command CREATE DATABASE bookmark_manager;
  3. Connect to the database using the pqsl command \c bookmark_manager;
  4. Run the query we have saved in the file 01_create_bookmarks_table.sql

Create test database

  1. Connect to psql
  2. Create the database using the psql command CREATE DATABASE bookmark_manager_test;
  3. Connect to the database using the pqsl command \c bookmark_manager_test;
  4. Run the query we have saved in the file 01_create_bookmarks_table.sql