My Bookmark Manager app: the PostgreSQL database management system have to be installed on your system.
01_create_bookmarks_table
- Connect to psql via the terminal
- Create the database with the psq command 'CREATE DATABASE bookmark_manager;'
- Connect to the database using the command '\c bookmark_manager;'
- Run the query that is saved in the file 01_create_bookmark_table.sql
02_create_bookmarks_test_table
- Connect to psql via the terminal
- Create the database with the psq command 'CREATE DATABASE bookmark_manager_test;'
- Connect to the database using the command '\c bookmark_manager_test;'
- Run the query that is saved in the file 02_create_bookmark_test_table.sql