diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml index 7cdca33..4f48b1a 100644 --- a/.idea/dataSources.xml +++ b/.idea/dataSources.xml @@ -8,5 +8,12 @@ jdbc:postgresql://localhost:5432/postgres $ProjectFileDir$ + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://localhost:5432/postgres + $ProjectFileDir$ + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..68369d3 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +## New database setup + +```postgresql +create database name; +create user name with password 'password'; +grant all privileges on database name to name; +```