Skip to content

Getting started

Pavel Semenov edited this page Jun 24, 2020 · 8 revisions

Getting started

  1. First of all we should create database to store platform data.
CREATE ROLE whirl WITH LOGIN PASSWORD 'password';
CREATE DATABASE whirl OWNER whirl;
GRANT ALL PRIVILEGES ON DATABASE whirl TO whirl;
-- connect to whirl database as superuser and run next commands
CREATE SCHEMA whirl AUTHORIZATION whirl;
CREATE EXTENSION IF NOT EXISTS hstore;

Clone this wiki locally