view schema/demo-data/users.sql @ 193:1585c334e8a7

More on persisting sessions.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 20 Jul 2018 18:32:11 +0200
parents 0c0826063561
children 87f21b9a1292
line wrap: on
line source

BEGIN;

-- PREREQUISITES:
-- Cluster has roles as created by roles.sql

-- Setup Country Codes
COPY gemma.countries (country_code) FROM stdin;
RO
HU
SK
AT
HR
BG
\.

-- Fill in Profiles
COPY gemma.user_profiles (username, country, email_adress) FROM stdin;
sophie	AT	sophie@example.com
lucian	RO	lucian@example.com
oana	RO	oana@example.com
penka	BG	penka@example.com
vanja	BG	vanja@example.com
\.

COMMIT;