Browse Source

Add a sql scripts to grant python

Required to make the python app working.
DricomDragon 5 years ago
parent
commit
70c1267928
1 changed files with 3 additions and 0 deletions
  1. 3 0
      SQL/grant_python.sql

+ 3 - 0
SQL/grant_python.sql

@@ -0,0 +1,3 @@
+GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO python_app;
+
+GRANT ALL PRIVILEGES ON ALL SEQUENCES IN SCHEMA public TO python_app;