1 2 3 4 5 6 7 8 |
# Create Admin ROLE create role admin with LOGIN SUPERUSER CREATEDB createrole inherit replication connection limit -1 password '123123'; # Craete Database create database device with owner=admin encoding = 'UTF8' connection limit = -1 # |