You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pavel Semenov edited this page Jun 24, 2020
·
8 revisions
Getting started
First of all we should create database to store platform data.
CREATE ROLE whirl WITH LOGIN PASSWORD 'password';
CREATEDATABASEwhirl OWNER whirl;
GRANT ALL PRIVILEGES ON DATABASE whirl TO whirl;
-- connect to whirl database as superuser and run next commandsCREATESCHEMAwhirl AUTHORIZATION whirl;
CREATE EXTENSION IF NOT EXISTS hstore;