view schema/demo-data/users.sql @ 208:87f21b9a1292

Adapt demo-data to schema changes
author Tom Gottfried <tom@intevation.de>
date Mon, 23 Jul 2018 15:57:54 +0200
parents 0c0826063561
children e7826710d9c4
line wrap: on
line source

BEGIN;

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

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

-- Fill in Profiles
COPY users.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;