You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stefanik36 edited this page Dec 5, 2017
·
1 revision
Creating a sample database
install postgresql
sudo apt-get install postgresql
create a sample database
sudo su postgresql
psql
CREATE USER agh WITH PASSWORD 'AGH-salaries';
CREATE DATABASE salaries OWNER agh;
GRANT ALL PRIVILEGES ON DATABASE "salaries" to agh;