Skip to content

jon-the-melon/cs2102-project

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

127 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cs2102-project

Import Database Dump

Step 1: Create a new database

Log into PostgreSQL (e.g., with psql) and create a new database, e.g.

CREATE DATABASE cs2102_project; -- Feel free to pick your own name

Step 2: Import dump into the newly create database, e.g.:

psql -d cs2102_project -f schema.sql -U postgres -- you might need to add the full path where cs2102.sql is located psql -d cs2102_project -f proc.sql -U postgres

About

project workspace for cs2102 final project

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • PLpgSQL 99.4%
  • Python 0.6%