Grant “create schema” ON database to a user?
It’s more simple than I thought. GRANT CREATE ON DATABASE db TO user;
It’s more simple than I thought. GRANT CREATE ON DATABASE db TO user;
Hey I have already solved this. What you have to do is to first login as postgres user as follows: $ su postgres $ psql postgres=# alter user athleticu createdb; ALTER ROLE Hope it helps you 🙂
I use the pre_tasks to do some tasks before roles, thanks for Kashyap. #!/usr/bin/env ansible-playbook — – hosts: all become: true pre_tasks: – name: start tasks and sent notifiaction to HipChat hipchat: color: purple token: “{{ hipchat_token }}” room: “{{ hipchat_room }}” msg: “[Start] Run ‘foo/setup.yml’ playbook on {{ ansible_nodename }}.” roles: – chusiang.vim-and-vi-mode vars: … Read more
If you add a role=”form” to a form, a screen reader sees it as a region on a webpage. That means that a user can easily jump to the form with his/her region quick navigation keys (for example, in JAWS 15 you use R for this). And also, your user will be able to easily … Read more