Skip to content

Instantly share code, notes, and snippets.

@paulkernstock
Created March 20, 2017 13:27
Show Gist options
  • Save paulkernstock/fb53544f4c67eb81576bb69ec2b9ece4 to your computer and use it in GitHub Desktop.
Save paulkernstock/fb53544f4c67eb81576bb69ec2b9ece4 to your computer and use it in GitHub Desktop.
Taiga pg_restore log
(taiga) taiga@SHG-Simulationsserver:~$ sudo -u postgres pg_dump --format=custom --dbname=taiga --file=/home/taiga/Backup/shg-taiga-postgres.dump
(taiga) taiga@SHG-Simulationsserver:~$ sudo -u postgres pg_restore -d taiga /home/taiga/Backup/shg-taiga-postgres.dump
pg_restore: [archiver (db)] Error while PROCESSING TOC:
pg_restore: [archiver (db)] Error from TOC entry 310; 1255 17977 FUNCTION array_distinct(anyarray) taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "array_distinct" already exists with same argument types
Command was: CREATE FUNCTION array_distinct(anyarray) RETURNS anyarray
LANGUAGE sql
AS $_$
SELECT ARRAY(SELECT DIST...
pg_restore: [archiver (db)] Error from TOC entry 325; 1255 18514 FUNCTION clean_key_in_custom_attributes_values() taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "clean_key_in_custom_attributes_values" already exists with same argument types
Command was: CREATE FUNCTION clean_key_in_custom_attributes_values() RETURNS trigger
LANGUAGE plpgsql
AS $$
...
pg_restore: [archiver (db)] Error from TOC entry 308; 1255 17911 FUNCTION inmutable_array_to_string(text[]) taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "inmutable_array_to_string" already exists with same argument types
Command was: CREATE FUNCTION inmutable_array_to_string(text[]) RETURNS text
LANGUAGE sql IMMUTABLE
AS $_$SELECT array_to_string($...
pg_restore: [archiver (db)] Error from TOC entry 324; 1255 18513 FUNCTION json_object_delete_keys(json, text[]) taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "json_object_delete_keys" already exists with same argument types
Command was: CREATE FUNCTION json_object_delete_keys(json json, VARIADIC keys_to_delete text[]) RETURNS json
LANGUAGE sql IMMUTABLE S...
pg_restore: [archiver (db)] Error from TOC entry 326; 1255 18672 FUNCTION json_object_delete_keys(jsonb, text[]) taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "json_object_delete_keys" already exists with same argument types
Command was: CREATE FUNCTION json_object_delete_keys(json jsonb, VARIADIC keys_to_delete text[]) RETURNS jsonb
LANGUAGE sql IMMUTABLE...
pg_restore: [archiver (db)] Error from TOC entry 309; 1255 17975 FUNCTION reduce_dim(anyarray) taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "reduce_dim" already exists with same argument types
Command was: CREATE FUNCTION reduce_dim(anyarray) RETURNS SETOF anyarray
LANGUAGE plpgsql IMMUTABLE
AS $_$
DECLARE
...
pg_restore: [archiver (db)] Error from TOC entry 323; 1255 17978 FUNCTION update_project_tags_colors() taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "update_project_tags_colors" already exists with same argument types
Command was: CREATE FUNCTION update_project_tags_colors() RETURNS trigger
LANGUAGE plpgsql
AS $$
DECLARE
...
pg_restore: [archiver (db)] Error from TOC entry 972; 1255 17976 AGGREGATE array_agg_mult(anyarray) taiga
pg_restore: [archiver (db)] could not execute query: ERROR: function "array_agg_mult" already exists with same argument types
Command was: CREATE AGGREGATE array_agg_mult(anyarray) (
SFUNC = array_cat,
STYPE = anyarray,
INITCOND = '{}'
);
pg_restore: [archiver (db)] Error from TOC entry 2036; 3600 17575 TEXT SEARCH DICTIONARY english_stem_nostop taiga
pg_restore: [archiver (db)] could not execute query: ERROR: duplicate key value violates unique constraint "pg_ts_dict_dictname_index"
DETAIL: Key (dictname, dictnamespace)=(english_stem_nostop, 2200) already exists.
Command was: CREATE TEXT SEARCH DICTIONARY english_stem_nostop (
TEMPLATE = pg_catalog.snowball,
language = 'english' );
pg_restore: [archiver (db)] Error from TOC entry 2053; 3602 17576 TEXT SEARCH CONFIGURATION english_nostop taiga
pg_restore: [archiver (db)] could not execute query: ERROR: duplicate key value violates unique constraint "pg_ts_config_cfgname_index"
DETAIL: Key (cfgname, cfgnamespace)=(english_nostop, 2200) already exists.
Command was: CREATE TEXT SEARCH CONFIGURATION english_nostop (
PARSER = pg_catalog."default" );
ALTER TEXT SEARCH CONFIGURATION engl...
pg_restore: [archiver (db)] Error from TOC entry 212; 1259 16704 TABLE attachments_attachment taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "attachments_attachment" already exists
Command was: CREATE TABLE attachments_attachment (
id integer NOT NULL,
object_id integer NOT NULL,
created_date timestamp wi...
pg_restore: [archiver (db)] Error from TOC entry 211; 1259 16702 SEQUENCE attachments_attachment_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "attachments_attachment_id_seq" already exists
Command was: CREATE SEQUENCE attachments_attachment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE ...
pg_restore: [archiver (db)] Error from TOC entry 216; 1259 16782 TABLE auth_group taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group" already exists
Command was: CREATE TABLE auth_group (
id integer NOT NULL,
name character varying(80) NOT NULL
);
pg_restore: [archiver (db)] Error from TOC entry 215; 1259 16780 SEQUENCE auth_group_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_id_seq" already exists
Command was: CREATE SEQUENCE auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 218; 1259 16792 TABLE auth_group_permissions taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_permissions" already exists
Command was: CREATE TABLE auth_group_permissions (
id integer NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT ...
pg_restore: [archiver (db)] Error from TOC entry 217; 1259 16790 SEQUENCE auth_group_permissions_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_permissions_id_seq" already exists
Command was: CREATE SEQUENCE auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE ...
pg_restore: [archiver (db)] Error from TOC entry 214; 1259 16774 TABLE auth_permission taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_permission" already exists
Command was: CREATE TABLE auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id intege...
pg_restore: [archiver (db)] Error from TOC entry 213; 1259 16772 SEQUENCE auth_permission_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_permission_id_seq" already exists
Command was: CREATE SEQUENCE auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 250; 1259 18169 TABLE contact_contactentry taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "contact_contactentry" already exists
Command was: CREATE TABLE contact_contactentry (
id integer NOT NULL,
comment text NOT NULL,
created_date timestamp with time...
pg_restore: [archiver (db)] Error from TOC entry 249; 1259 18167 SEQUENCE contact_contactentry_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "contact_contactentry_id_seq" already exists
Command was: CREATE SEQUENCE contact_contactentry_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 273; 1259 18559 TABLE custom_attributes_epiccustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattribute" already exists
Command was: CREATE TABLE custom_attributes_epiccustomattribute (
id integer NOT NULL,
name character varying(64) NOT NULL,
d...
pg_restore: [archiver (db)] Error from TOC entry 272; 1259 18557 SEQUENCE custom_attributes_epiccustomattribute_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattribute_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_epiccustomattribute_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXV...
pg_restore: [archiver (db)] Error from TOC entry 275; 1259 18570 TABLE custom_attributes_epiccustomattributesvalues taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattributesvalues" already exists
Command was: CREATE TABLE custom_attributes_epiccustomattributesvalues (
id integer NOT NULL,
version integer NOT NULL,
attri...
pg_restore: [archiver (db)] Error from TOC entry 274; 1259 18568 SEQUENCE custom_attributes_epiccustomattributesvalues_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattributesvalues_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_epiccustomattributesvalues_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
...
pg_restore: [archiver (db)] Error from TOC entry 261; 1259 18404 TABLE custom_attributes_issuecustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattribute" already exists
Command was: CREATE TABLE custom_attributes_issuecustomattribute (
id integer NOT NULL,
name character varying(64) NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 260; 1259 18402 SEQUENCE custom_attributes_issuecustomattribute_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattribute_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_issuecustomattribute_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAX...
pg_restore: [archiver (db)] Error from TOC entry 267; 1259 18461 TABLE custom_attributes_issuecustomattributesvalues taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattributesvalues" already exists
Command was: CREATE TABLE custom_attributes_issuecustomattributesvalues (
id integer NOT NULL,
version integer NOT NULL,
attr...
pg_restore: [archiver (db)] Error from TOC entry 266; 1259 18459 SEQUENCE custom_attributes_issuecustomattributesvalues_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattributesvalues_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_issuecustomattributesvalues_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
...
pg_restore: [archiver (db)] Error from TOC entry 263; 1259 18415 TABLE custom_attributes_taskcustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattribute" already exists
Command was: CREATE TABLE custom_attributes_taskcustomattribute (
id integer NOT NULL,
name character varying(64) NOT NULL,
d...
pg_restore: [archiver (db)] Error from TOC entry 262; 1259 18413 SEQUENCE custom_attributes_taskcustomattribute_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattribute_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_taskcustomattribute_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXV...
pg_restore: [archiver (db)] Error from TOC entry 269; 1259 18474 TABLE custom_attributes_taskcustomattributesvalues taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattributesvalues" already exists
Command was: CREATE TABLE custom_attributes_taskcustomattributesvalues (
id integer NOT NULL,
version integer NOT NULL,
attri...
pg_restore: [archiver (db)] Error from TOC entry 268; 1259 18472 SEQUENCE custom_attributes_taskcustomattributesvalues_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattributesvalues_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_taskcustomattributesvalues_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
...
pg_restore: [archiver (db)] Error from TOC entry 265; 1259 18426 TABLE custom_attributes_userstorycustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattribute" already exists
Command was: CREATE TABLE custom_attributes_userstorycustomattribute (
id integer NOT NULL,
name character varying(64) NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 264; 1259 18424 SEQUENCE custom_attributes_userstorycustomattribute_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattribute_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_userstorycustomattribute_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO...
pg_restore: [archiver (db)] Error from TOC entry 271; 1259 18487 TABLE custom_attributes_userstorycustomattributesvalues taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattributesvalues" already exists
Command was: CREATE TABLE custom_attributes_userstorycustomattributesvalues (
id integer NOT NULL,
version integer NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 270; 1259 18485 SEQUENCE custom_attributes_userstorycustomattributesvalues_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattributesvalues_id_seq" already exists
Command was: CREATE SEQUENCE custom_attributes_userstorycustomattributesvalues_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE...
pg_restore: [archiver (db)] Error from TOC entry 188; 1259 16423 TABLE django_admin_log taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_admin_log" already exists
Command was: CREATE TABLE django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id te...
pg_restore: [archiver (db)] Error from TOC entry 187; 1259 16421 SEQUENCE django_admin_log_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_admin_log_id_seq" already exists
Command was: CREATE SEQUENCE django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 184; 1259 16399 TABLE django_content_type taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_content_type" already exists
Command was: CREATE TABLE django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model charact...
pg_restore: [archiver (db)] Error from TOC entry 183; 1259 16397 SEQUENCE django_content_type_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_content_type_id_seq" already exists
Command was: CREATE SEQUENCE django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 182; 1259 16388 TABLE django_migrations taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_migrations" already exists
Command was: CREATE TABLE django_migrations (
id integer NOT NULL,
app character varying(255) NOT NULL,
name character varyin...
pg_restore: [archiver (db)] Error from TOC entry 181; 1259 16386 SEQUENCE django_migrations_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_migrations_id_seq" already exists
Command was: CREATE SEQUENCE django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 290; 1259 18897 TABLE django_session taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_session" already exists
Command was: CREATE TABLE django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_dat...
pg_restore: [archiver (db)] Error from TOC entry 276; 1259 18673 TABLE djmail_message taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "djmail_message" already exists
Command was: CREATE TABLE djmail_message (
uuid character varying(40) NOT NULL,
from_email character varying(1024) NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 278; 1259 18684 TABLE easy_thumbnails_source taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source" already exists
Command was: CREATE TABLE easy_thumbnails_source (
id integer NOT NULL,
storage_hash character varying(40) NOT NULL,
name cha...
pg_restore: [archiver (db)] Error from TOC entry 277; 1259 18682 SEQUENCE easy_thumbnails_source_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source_id_seq" already exists
Command was: CREATE SEQUENCE easy_thumbnails_source_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE ...
pg_restore: [archiver (db)] Error from TOC entry 280; 1259 18692 TABLE easy_thumbnails_thumbnail taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail" already exists
Command was: CREATE TABLE easy_thumbnails_thumbnail (
id integer NOT NULL,
storage_hash character varying(40) NOT NULL,
name ...
pg_restore: [archiver (db)] Error from TOC entry 279; 1259 18690 SEQUENCE easy_thumbnails_thumbnail_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_id_seq" already exists
Command was: CREATE SEQUENCE easy_thumbnails_thumbnail_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CAC...
pg_restore: [archiver (db)] Error from TOC entry 282; 1259 18718 TABLE easy_thumbnails_thumbnaildimensions taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnaildimensions" already exists
Command was: CREATE TABLE easy_thumbnails_thumbnaildimensions (
id integer NOT NULL,
thumbnail_id integer NOT NULL,
width int...
pg_restore: [archiver (db)] Error from TOC entry 281; 1259 18716 SEQUENCE easy_thumbnails_thumbnaildimensions_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnaildimensions_id_seq" already exists
Command was: CREATE SEQUENCE easy_thumbnails_thumbnaildimensions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVAL...
pg_restore: [archiver (db)] Error from TOC entry 257; 1259 18333 TABLE epics_epic taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic" already exists
Command was: CREATE TABLE epics_epic (
id integer NOT NULL,
tags text[],
version integer NOT NULL,
is_blocked boolean NOT...
pg_restore: [archiver (db)] Error from TOC entry 256; 1259 18331 SEQUENCE epics_epic_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic_id_seq" already exists
Command was: CREATE SEQUENCE epics_epic_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 259; 1259 18344 TABLE epics_relateduserstory taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_relateduserstory" already exists
Command was: CREATE TABLE epics_relateduserstory (
id integer NOT NULL,
"order" bigint NOT NULL,
epic_id integer NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 258; 1259 18342 SEQUENCE epics_relateduserstory_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_relateduserstory_id_seq" already exists
Command was: CREATE SEQUENCE epics_relateduserstory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE ...
pg_restore: [archiver (db)] Error from TOC entry 283; 1259 18756 TABLE external_apps_application taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_application" already exists
Command was: CREATE TABLE external_apps_application (
id character varying(255) NOT NULL,
name character varying(255) NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 285; 1259 18766 TABLE external_apps_applicationtoken taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_applicationtoken" already exists
Command was: CREATE TABLE external_apps_applicationtoken (
id integer NOT NULL,
auth_code character varying(255),
token chara...
pg_restore: [archiver (db)] Error from TOC entry 284; 1259 18764 SEQUENCE external_apps_applicationtoken_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_applicationtoken_id_seq" already exists
Command was: CREATE SEQUENCE external_apps_applicationtoken_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
...
pg_restore: [archiver (db)] Error from TOC entry 287; 1259 18793 TABLE feedback_feedbackentry taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "feedback_feedbackentry" already exists
Command was: CREATE TABLE feedback_feedbackentry (
id integer NOT NULL,
full_name character varying(256) NOT NULL,
email char...
pg_restore: [archiver (db)] Error from TOC entry 286; 1259 18791 SEQUENCE feedback_feedbackentry_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "feedback_feedbackentry_id_seq" already exists
Command was: CREATE SEQUENCE feedback_feedbackentry_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE ...
pg_restore: [archiver (db)] Error from TOC entry 255; 1259 18295 TABLE history_historyentry taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "history_historyentry" already exists
Command was: CREATE TABLE history_historyentry (
id character varying(255) NOT NULL,
"user" jsonb,
created_at timestamp with ...
pg_restore: [archiver (db)] Error from TOC entry 222; 1259 16901 TABLE issues_issue taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue" already exists
Command was: CREATE TABLE issues_issue (
id integer NOT NULL,
tags text[],
version integer NOT NULL,
is_blocked boolean N...
pg_restore: [archiver (db)] Error from TOC entry 221; 1259 16899 SEQUENCE issues_issue_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_id_seq" already exists
Command was: CREATE SEQUENCE issues_issue_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 246; 1259 17629 TABLE likes_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "likes_like" already exists
Command was: CREATE TABLE likes_like (
id integer NOT NULL,
object_id integer NOT NULL,
created_date timestamp with time zone...
pg_restore: [archiver (db)] Error from TOC entry 245; 1259 17627 SEQUENCE likes_like_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "likes_like_id_seq" already exists
Command was: CREATE SEQUENCE likes_like_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 220; 1259 16850 TABLE milestones_milestone taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone" already exists
Command was: CREATE TABLE milestones_milestone (
id integer NOT NULL,
name character varying(200) NOT NULL,
slug character va...
pg_restore: [archiver (db)] Error from TOC entry 219; 1259 16848 SEQUENCE milestones_milestone_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_id_seq" already exists
Command was: CREATE SEQUENCE milestones_milestone_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 230; 1259 17201 TABLE notifications_historychangenotification taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification" already exists
Command was: CREATE TABLE notifications_historychangenotification (
id integer NOT NULL,
key character varying(255) NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 232; 1259 17209 TABLE notifications_historychangenotification_history_entries taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_history_entries" already exists
Command was: CREATE TABLE notifications_historychangenotification_history_entries (
id integer NOT NULL,
historychangenotificatio...
pg_restore: [archiver (db)] Error from TOC entry 231; 1259 17207 SEQUENCE notifications_historychangenotification_history_entries_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_history_entries_id_seq" already exists
Command was: CREATE SEQUENCE notifications_historychangenotification_history_entries_id_seq
START WITH 1
INCREMENT BY 1
NO MI...
pg_restore: [archiver (db)] Error from TOC entry 229; 1259 17199 SEQUENCE notifications_historychangenotification_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_id_seq" already exists
Command was: CREATE SEQUENCE notifications_historychangenotification_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MA...
pg_restore: [archiver (db)] Error from TOC entry 234; 1259 17217 TABLE notifications_historychangenotification_notify_users taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_notify_users" already exists
Command was: CREATE TABLE notifications_historychangenotification_notify_users (
id integer NOT NULL,
historychangenotification_i...
pg_restore: [archiver (db)] Error from TOC entry 233; 1259 17215 SEQUENCE notifications_historychangenotification_notify_users_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_notify_users_id_seq" already exists
Command was: CREATE SEQUENCE notifications_historychangenotification_notify_users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVA...
pg_restore: [archiver (db)] Error from TOC entry 228; 1259 17150 TABLE notifications_notifypolicy taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_notifypolicy" already exists
Command was: CREATE TABLE notifications_notifypolicy (
id integer NOT NULL,
notify_level smallint NOT NULL,
created_at timest...
pg_restore: [archiver (db)] Error from TOC entry 227; 1259 17148 SEQUENCE notifications_notifypolicy_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_notifypolicy_id_seq" already exists
Command was: CREATE SEQUENCE notifications_notifypolicy_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CA...
pg_restore: [archiver (db)] Error from TOC entry 236; 1259 17268 TABLE notifications_watched taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_watched" already exists
Command was: CREATE TABLE notifications_watched (
id integer NOT NULL,
object_id integer NOT NULL,
created_date timestamp wit...
pg_restore: [archiver (db)] Error from TOC entry 235; 1259 17266 SEQUENCE notifications_watched_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_watched_id_seq" already exists
Command was: CREATE SEQUENCE notifications_watched_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1...
pg_restore: [archiver (db)] Error from TOC entry 248; 1259 17997 TABLE projects_epicstatus taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus" already exists
Command was: CREATE TABLE projects_epicstatus (
id integer NOT NULL,
name character varying(255) NOT NULL,
slug character var...
pg_restore: [archiver (db)] Error from TOC entry 247; 1259 17995 SEQUENCE projects_epicstatus_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus_id_seq" already exists
Command was: CREATE SEQUENCE projects_epicstatus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 196; 1259 16523 TABLE projects_issuestatus taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus" already exists
Command was: CREATE TABLE projects_issuestatus (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integer N...
pg_restore: [archiver (db)] Error from TOC entry 195; 1259 16521 SEQUENCE projects_issuestatus_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus_id_seq" already exists
Command was: CREATE SEQUENCE projects_issuestatus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 198; 1259 16531 TABLE projects_issuetype taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuetype" already exists
Command was: CREATE TABLE projects_issuetype (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integer NOT...
pg_restore: [archiver (db)] Error from TOC entry 197; 1259 16529 SEQUENCE projects_issuetype_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuetype_id_seq" already exists
Command was: CREATE SEQUENCE projects_issuetype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 192; 1259 16461 TABLE projects_membership taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership" already exists
Command was: CREATE TABLE projects_membership (
id integer NOT NULL,
is_admin boolean NOT NULL,
email character varying(255),...
pg_restore: [archiver (db)] Error from TOC entry 191; 1259 16459 SEQUENCE projects_membership_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership_id_seq" already exists
Command was: CREATE SEQUENCE projects_membership_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 200; 1259 16539 TABLE projects_points taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_points" already exists
Command was: CREATE TABLE projects_points (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integer NOT NU...
pg_restore: [archiver (db)] Error from TOC entry 199; 1259 16537 SEQUENCE projects_points_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_points_id_seq" already exists
Command was: CREATE SEQUENCE projects_points_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 202; 1259 16547 TABLE projects_priority taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_priority" already exists
Command was: CREATE TABLE projects_priority (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integer NOT ...
pg_restore: [archiver (db)] Error from TOC entry 201; 1259 16545 SEQUENCE projects_priority_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_priority_id_seq" already exists
Command was: CREATE SEQUENCE projects_priority_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 194; 1259 16469 TABLE projects_project taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project" already exists
Command was: CREATE TABLE projects_project (
id integer NOT NULL,
tags text[],
name character varying(250) NOT NULL,
slug...
pg_restore: [archiver (db)] Error from TOC entry 193; 1259 16467 SEQUENCE projects_project_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_id_seq" already exists
Command was: CREATE SEQUENCE projects_project_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 242; 1259 17480 TABLE projects_projectmodulesconfig taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projectmodulesconfig" already exists
Command was: CREATE TABLE projects_projectmodulesconfig (
id integer NOT NULL,
config jsonb,
project_id integer NOT NULL
);
pg_restore: [archiver (db)] Error from TOC entry 241; 1259 17478 SEQUENCE projects_projectmodulesconfig_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projectmodulesconfig_id_seq" already exists
Command was: CREATE SEQUENCE projects_projectmodulesconfig_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
...
pg_restore: [archiver (db)] Error from TOC entry 204; 1259 16555 TABLE projects_projecttemplate taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projecttemplate" already exists
Command was: CREATE TABLE projects_projecttemplate (
id integer NOT NULL,
name character varying(250) NOT NULL,
slug characte...
pg_restore: [archiver (db)] Error from TOC entry 203; 1259 16553 SEQUENCE projects_projecttemplate_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projecttemplate_id_seq" already exists
Command was: CREATE SEQUENCE projects_projecttemplate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACH...
pg_restore: [archiver (db)] Error from TOC entry 206; 1259 16568 TABLE projects_severity taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_severity" already exists
Command was: CREATE TABLE projects_severity (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integer NOT ...
pg_restore: [archiver (db)] Error from TOC entry 205; 1259 16566 SEQUENCE projects_severity_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_severity_id_seq" already exists
Command was: CREATE SEQUENCE projects_severity_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 208; 1259 16576 TABLE projects_taskstatus taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus" already exists
Command was: CREATE TABLE projects_taskstatus (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integer NO...
pg_restore: [archiver (db)] Error from TOC entry 207; 1259 16574 SEQUENCE projects_taskstatus_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus_id_seq" already exists
Command was: CREATE SEQUENCE projects_taskstatus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 210; 1259 16584 TABLE projects_userstorystatus taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus" already exists
Command was: CREATE TABLE projects_userstorystatus (
id integer NOT NULL,
name character varying(255) NOT NULL,
"order" integ...
pg_restore: [archiver (db)] Error from TOC entry 209; 1259 16582 SEQUENCE projects_userstorystatus_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus_id_seq" already exists
Command was: CREATE SEQUENCE projects_userstorystatus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACH...
pg_restore: [archiver (db)] Error from TOC entry 307; 1259 19584 SEQUENCE references_project7 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "references_project7" already exists
Command was: CREATE SEQUENCE references_project7
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 289; 1259 18876 TABLE references_reference taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "references_reference" already exists
Command was: CREATE TABLE references_reference (
id integer NOT NULL,
object_id integer NOT NULL,
ref bigint NOT NULL,
cr...
pg_restore: [archiver (db)] Error from TOC entry 288; 1259 18874 SEQUENCE references_reference_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "references_reference_id_seq" already exists
Command was: CREATE SEQUENCE references_reference_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 238; 1259 17297 TABLE tasks_task taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task" already exists
Command was: CREATE TABLE tasks_task (
id integer NOT NULL,
tags text[],
version integer NOT NULL,
is_blocked boolean NOT...
pg_restore: [archiver (db)] Error from TOC entry 237; 1259 17295 SEQUENCE tasks_task_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_id_seq" already exists
Command was: CREATE SEQUENCE tasks_task_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 244; 1259 17518 TABLE timeline_timeline taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline" already exists
Command was: CREATE TABLE timeline_timeline (
id integer NOT NULL,
object_id integer NOT NULL,
namespace character varying(25...
pg_restore: [archiver (db)] Error from TOC entry 243; 1259 17516 SEQUENCE timeline_timeline_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_id_seq" already exists
Command was: CREATE SEQUENCE timeline_timeline_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 240; 1259 17407 TABLE users_authdata taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_authdata" already exists
Command was: CREATE TABLE users_authdata (
id integer NOT NULL,
key character varying(50) NOT NULL,
value character varying(3...
pg_restore: [archiver (db)] Error from TOC entry 239; 1259 17405 SEQUENCE users_authdata_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_authdata_id_seq" already exists
Command was: CREATE SEQUENCE users_authdata_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 190; 1259 16448 TABLE users_role taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_role" already exists
Command was: CREATE TABLE users_role (
id integer NOT NULL,
name character varying(200) NOT NULL,
slug character varying(250)...
pg_restore: [archiver (db)] Error from TOC entry 189; 1259 16446 SEQUENCE users_role_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_role_id_seq" already exists
Command was: CREATE SEQUENCE users_role_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 186; 1259 16409 TABLE users_user taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_user" already exists
Command was: CREATE TABLE users_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp wi...
pg_restore: [archiver (db)] Error from TOC entry 185; 1259 16407 SEQUENCE users_user_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_user_id_seq" already exists
Command was: CREATE SEQUENCE users_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 292; 1259 18968 TABLE userstorage_storageentry taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstorage_storageentry" already exists
Command was: CREATE TABLE userstorage_storageentry (
id integer NOT NULL,
created_date timestamp with time zone NOT NULL,
mod...
pg_restore: [archiver (db)] Error from TOC entry 291; 1259 18966 SEQUENCE userstorage_storageentry_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstorage_storageentry_id_seq" already exists
Command was: CREATE SEQUENCE userstorage_storageentry_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACH...
pg_restore: [archiver (db)] Error from TOC entry 224; 1259 16983 TABLE userstories_rolepoints taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_rolepoints" already exists
Command was: CREATE TABLE userstories_rolepoints (
id integer NOT NULL,
points_id integer,
role_id integer NOT NULL,
user...
pg_restore: [archiver (db)] Error from TOC entry 223; 1259 16981 SEQUENCE userstories_rolepoints_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_rolepoints_id_seq" already exists
Command was: CREATE SEQUENCE userstories_rolepoints_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE ...
pg_restore: [archiver (db)] Error from TOC entry 226; 1259 16991 TABLE userstories_userstory taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory" already exists
Command was: CREATE TABLE userstories_userstory (
id integer NOT NULL,
tags text[],
version integer NOT NULL,
is_blocked ...
pg_restore: [archiver (db)] Error from TOC entry 225; 1259 16989 SEQUENCE userstories_userstory_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_id_seq" already exists
Command was: CREATE SEQUENCE userstories_userstory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1...
pg_restore: [archiver (db)] Error from TOC entry 294; 1259 19041 TABLE votes_vote taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_vote" already exists
Command was: CREATE TABLE votes_vote (
id integer NOT NULL,
object_id integer NOT NULL,
content_type_id integer NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 293; 1259 19039 SEQUENCE votes_vote_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_vote_id_seq" already exists
Command was: CREATE SEQUENCE votes_vote_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 296; 1259 19050 TABLE votes_votes taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_votes" already exists
Command was: CREATE TABLE votes_votes (
id integer NOT NULL,
object_id integer NOT NULL,
count integer NOT NULL,
content_...
pg_restore: [archiver (db)] Error from TOC entry 295; 1259 19048 SEQUENCE votes_votes_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_votes_id_seq" already exists
Command was: CREATE SEQUENCE votes_votes_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 298; 1259 19095 TABLE webhooks_webhook taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "webhooks_webhook" already exists
Command was: CREATE TABLE webhooks_webhook (
id integer NOT NULL,
url character varying(200) NOT NULL,
key text NOT NULL,
...
pg_restore: [archiver (db)] Error from TOC entry 297; 1259 19093 SEQUENCE webhooks_webhook_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "webhooks_webhook_id_seq" already exists
Command was: CREATE SEQUENCE webhooks_webhook_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 300; 1259 19106 TABLE webhooks_webhooklog taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "webhooks_webhooklog" already exists
Command was: CREATE TABLE webhooks_webhooklog (
id integer NOT NULL,
url character varying(200) NOT NULL,
status integer NOT ...
pg_restore: [archiver (db)] Error from TOC entry 299; 1259 19104 SEQUENCE webhooks_webhooklog_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "webhooks_webhooklog_id_seq" already exists
Command was: CREATE SEQUENCE webhooks_webhooklog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 252; 1259 18192 TABLE wiki_wikilink taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikilink" already exists
Command was: CREATE TABLE wiki_wikilink (
id integer NOT NULL,
title character varying(500) NOT NULL,
href character varying(...
pg_restore: [archiver (db)] Error from TOC entry 251; 1259 18190 SEQUENCE wiki_wikilink_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikilink_id_seq" already exists
Command was: CREATE SEQUENCE wiki_wikilink_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 254; 1259 18204 TABLE wiki_wikipage taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage" already exists
Command was: CREATE TABLE wiki_wikipage (
id integer NOT NULL,
version integer NOT NULL,
slug character varying(500) NOT NULL...
pg_restore: [archiver (db)] Error from TOC entry 253; 1259 18202 SEQUENCE wiki_wikipage_id_seq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_id_seq" already exists
Command was: CREATE SEQUENCE wiki_wikipage_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
pg_restore: [archiver (db)] Error from TOC entry 3163; 0 16704 TABLE DATA attachments_attachment taiga
pg_restore: [archiver (db)] COPY failed for table "attachments_attachment": ERROR: duplicate key value violates unique constraint "attachments_attachment_pkey"
DETAIL: Key (id)=(979) already exists.
CONTEXT: COPY attachments_attachment, line 979
pg_restore: [archiver (db)] Error from TOC entry 3165; 0 16774 TABLE DATA auth_permission taiga
pg_restore: [archiver (db)] COPY failed for table "auth_permission": ERROR: duplicate key value violates unique constraint "auth_permission_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY auth_permission, line 1
pg_restore: [archiver (db)] Error from TOC entry 3224; 0 18559 TABLE DATA custom_attributes_epiccustomattribute taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_epiccustomattribute": ERROR: duplicate key value violates unique constraint "custom_attributes_epiccustomattribute_pkey"
DETAIL: Key (id)=(21) already exists.
CONTEXT: COPY custom_attributes_epiccustomattribute, line 21
pg_restore: [archiver (db)] Error from TOC entry 3226; 0 18570 TABLE DATA custom_attributes_epiccustomattributesvalues taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_epiccustomattributesvalues": ERROR: duplicate key value violates unique constraint "custom_attributes_epiccustomattributesvalues_pkey"
DETAIL: Key (id)=(27) already exists.
CONTEXT: COPY custom_attributes_epiccustomattributesvalues, line 27
pg_restore: [archiver (db)] Error from TOC entry 3212; 0 18404 TABLE DATA custom_attributes_issuecustomattribute taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_issuecustomattribute": ERROR: duplicate key value violates unique constraint "custom_attributes_issuecustomattribute_pkey"
DETAIL: Key (id)=(21) already exists.
CONTEXT: COPY custom_attributes_issuecustomattribute, line 21
pg_restore: [archiver (db)] Error from TOC entry 3218; 0 18461 TABLE DATA custom_attributes_issuecustomattributesvalues taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_issuecustomattributesvalues": ERROR: duplicate key value violates unique constraint "custom_attributes_issuecustomattributesvalues_pkey"
DETAIL: Key (id)=(101) already exists.
CONTEXT: COPY custom_attributes_issuecustomattributesvalues, line 44
pg_restore: [archiver (db)] Error from TOC entry 3214; 0 18415 TABLE DATA custom_attributes_taskcustomattribute taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_taskcustomattribute": ERROR: duplicate key value violates unique constraint "custom_attributes_taskcustomattribute_pkey"
DETAIL: Key (id)=(21) already exists.
CONTEXT: COPY custom_attributes_taskcustomattribute, line 21
pg_restore: [archiver (db)] Error from TOC entry 3220; 0 18474 TABLE DATA custom_attributes_taskcustomattributesvalues taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_taskcustomattributesvalues": ERROR: duplicate key value violates unique constraint "custom_attributes_taskcustomattributesvalues_pkey"
DETAIL: Key (id)=(157) already exists.
CONTEXT: COPY custom_attributes_taskcustomattributesvalues, line 31
pg_restore: [archiver (db)] Error from TOC entry 3216; 0 18426 TABLE DATA custom_attributes_userstorycustomattribute taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_userstorycustomattribute": ERROR: duplicate key value violates unique constraint "custom_attributes_userstorycustomattribute_pkey"
DETAIL: Key (id)=(21) already exists.
CONTEXT: COPY custom_attributes_userstorycustomattribute, line 21
pg_restore: [archiver (db)] Error from TOC entry 3222; 0 18487 TABLE DATA custom_attributes_userstorycustomattributesvalues taiga
pg_restore: [archiver (db)] COPY failed for table "custom_attributes_userstorycustomattributesvalues": ERROR: duplicate key value violates unique constraint "custom_attributes_userstorycustomattributesvalues_pkey"
DETAIL: Key (id)=(109) already exists.
CONTEXT: COPY custom_attributes_userstorycustomattributesvalues, line 109
pg_restore: [archiver (db)] Error from TOC entry 3135; 0 16399 TABLE DATA django_content_type taiga
pg_restore: [archiver (db)] COPY failed for table "django_content_type": ERROR: duplicate key value violates unique constraint "django_content_type_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY django_content_type, line 1
pg_restore: [archiver (db)] Error from TOC entry 3133; 0 16388 TABLE DATA django_migrations taiga
pg_restore: [archiver (db)] COPY failed for table "django_migrations": ERROR: duplicate key value violates unique constraint "django_migrations_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY django_migrations, line 1
pg_restore: [archiver (db)] Error from TOC entry 3208; 0 18333 TABLE DATA epics_epic taiga
pg_restore: [archiver (db)] COPY failed for table "epics_epic": ERROR: duplicate key value violates unique constraint "epics_epic_pkey"
DETAIL: Key (id)=(27) already exists.
CONTEXT: COPY epics_epic, line 16
pg_restore: [archiver (db)] Error from TOC entry 3210; 0 18344 TABLE DATA epics_relateduserstory taiga
pg_restore: [archiver (db)] COPY failed for table "epics_relateduserstory": ERROR: duplicate key value violates unique constraint "epics_relateduserstory_pkey"
DETAIL: Key (id)=(76) already exists.
CONTEXT: COPY epics_relateduserstory, line 76
pg_restore: [archiver (db)] Error from TOC entry 3206; 0 18295 TABLE DATA history_historyentry taiga
pg_restore: [archiver (db)] COPY failed for table "history_historyentry": ERROR: duplicate key value violates unique constraint "history_historyentry_pkey"
DETAIL: Key (id)=(48bfbfb2-0d67-11e7-ae92-901b0e2d049f) already exists.
CONTEXT: COPY history_historyentry, line 12
pg_restore: [archiver (db)] Error from TOC entry 3173; 0 16901 TABLE DATA issues_issue taiga
pg_restore: [archiver (db)] COPY failed for table "issues_issue": ERROR: duplicate key value violates unique constraint "issues_issue_pkey"
DETAIL: Key (id)=(80) already exists.
CONTEXT: COPY issues_issue, line 13
pg_restore: [archiver (db)] Error from TOC entry 3197; 0 17629 TABLE DATA likes_like taiga
pg_restore: [archiver (db)] COPY failed for table "likes_like": ERROR: duplicate key value violates unique constraint "likes_like_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY likes_like, line 1
pg_restore: [archiver (db)] Error from TOC entry 3171; 0 16850 TABLE DATA milestones_milestone taiga
pg_restore: [archiver (db)] COPY failed for table "milestones_milestone": ERROR: duplicate key value violates unique constraint "milestones_milestone_pkey"
DETAIL: Key (id)=(11) already exists.
CONTEXT: COPY milestones_milestone, line 11
pg_restore: [archiver (db)] Error from TOC entry 3179; 0 17150 TABLE DATA notifications_notifypolicy taiga
pg_restore: [archiver (db)] COPY failed for table "notifications_notifypolicy": ERROR: duplicate key value violates unique constraint "notifications_notifypolicy_pkey"
DETAIL: Key (id)=(92) already exists.
CONTEXT: COPY notifications_notifypolicy, line 18
pg_restore: [archiver (db)] Error from TOC entry 3187; 0 17268 TABLE DATA notifications_watched taiga
pg_restore: [archiver (db)] COPY failed for table "notifications_watched": ERROR: duplicate key value violates unique constraint "notifications_watched_pkey"
DETAIL: Key (id)=(1174) already exists.
CONTEXT: COPY notifications_watched, line 1174
pg_restore: [archiver (db)] Error from TOC entry 3199; 0 17997 TABLE DATA projects_epicstatus taiga
pg_restore: [archiver (db)] COPY failed for table "projects_epicstatus": ERROR: duplicate key value violates unique constraint "projects_epicstatus_pkey"
DETAIL: Key (id)=(31) already exists.
CONTEXT: COPY projects_epicstatus, line 31
pg_restore: [archiver (db)] Error from TOC entry 3147; 0 16523 TABLE DATA projects_issuestatus taiga
pg_restore: [archiver (db)] COPY failed for table "projects_issuestatus": ERROR: duplicate key value violates unique constraint "projects_issuestatus_pkey"
DETAIL: Key (id)=(43) already exists.
CONTEXT: COPY projects_issuestatus, line 43
pg_restore: [archiver (db)] Error from TOC entry 3149; 0 16531 TABLE DATA projects_issuetype taiga
pg_restore: [archiver (db)] COPY failed for table "projects_issuetype": ERROR: duplicate key value violates unique constraint "projects_issuetype_pkey"
DETAIL: Key (id)=(19) already exists.
CONTEXT: COPY projects_issuetype, line 19
pg_restore: [archiver (db)] Error from TOC entry 3143; 0 16461 TABLE DATA projects_membership taiga
pg_restore: [archiver (db)] COPY failed for table "projects_membership": ERROR: duplicate key value violates unique constraint "projects_membership_pkey"
DETAIL: Key (id)=(79) already exists.
CONTEXT: COPY projects_membership, line 73
pg_restore: [archiver (db)] Error from TOC entry 3151; 0 16539 TABLE DATA projects_points taiga
pg_restore: [archiver (db)] COPY failed for table "projects_points": ERROR: duplicate key value violates unique constraint "projects_points_pkey"
DETAIL: Key (id)=(73) already exists.
CONTEXT: COPY projects_points, line 73
pg_restore: [archiver (db)] Error from TOC entry 3153; 0 16547 TABLE DATA projects_priority taiga
pg_restore: [archiver (db)] COPY failed for table "projects_priority": ERROR: duplicate key value violates unique constraint "projects_priority_pkey"
DETAIL: Key (id)=(19) already exists.
CONTEXT: COPY projects_priority, line 19
pg_restore: [archiver (db)] Error from TOC entry 3145; 0 16469 TABLE DATA projects_project taiga
pg_restore: [archiver (db)] COPY failed for table "projects_project": ERROR: duplicate key value violates unique constraint "projects_project_pkey"
DETAIL: Key (id)=(7) already exists.
CONTEXT: COPY projects_project, line 2
pg_restore: [archiver (db)] Error from TOC entry 3155; 0 16555 TABLE DATA projects_projecttemplate taiga
pg_restore: [archiver (db)] COPY failed for table "projects_projecttemplate": ERROR: duplicate key value violates unique constraint "projects_projecttemplate_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY projects_projecttemplate, line 1
pg_restore: [archiver (db)] Error from TOC entry 3157; 0 16568 TABLE DATA projects_severity taiga
pg_restore: [archiver (db)] COPY failed for table "projects_severity": ERROR: duplicate key value violates unique constraint "projects_severity_pkey"
DETAIL: Key (id)=(31) already exists.
CONTEXT: COPY projects_severity, line 31
pg_restore: [archiver (db)] Error from TOC entry 3159; 0 16576 TABLE DATA projects_taskstatus taiga
pg_restore: [archiver (db)] COPY failed for table "projects_taskstatus": ERROR: duplicate key value violates unique constraint "projects_taskstatus_pkey"
DETAIL: Key (id)=(31) already exists.
CONTEXT: COPY projects_taskstatus, line 31
pg_restore: [archiver (db)] Error from TOC entry 3161; 0 16584 TABLE DATA projects_userstorystatus taiga
pg_restore: [archiver (db)] COPY failed for table "projects_userstorystatus": ERROR: duplicate key value violates unique constraint "projects_userstorystatus_pkey"
DETAIL: Key (id)=(37) already exists.
CONTEXT: COPY projects_userstorystatus, line 37
pg_restore: [archiver (db)] Error from TOC entry 3240; 0 18876 TABLE DATA references_reference taiga
pg_restore: [archiver (db)] COPY failed for table "references_reference": ERROR: duplicate key value violates unique constraint "references_reference_pkey"
DETAIL: Key (id)=(362) already exists.
CONTEXT: COPY references_reference, line 362
pg_restore: [archiver (db)] Error from TOC entry 3189; 0 17297 TABLE DATA tasks_task taiga
pg_restore: [archiver (db)] COPY failed for table "tasks_task": ERROR: duplicate key value violates unique constraint "tasks_task_pkey"
DETAIL: Key (id)=(149) already exists.
CONTEXT: COPY tasks_task, line 149
pg_restore: [archiver (db)] Error from TOC entry 3195; 0 17518 TABLE DATA timeline_timeline taiga
pg_restore: [archiver (db)] COPY failed for table "timeline_timeline": ERROR: duplicate key value violates unique constraint "timeline_timeline_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY timeline_timeline, line 1
pg_restore: [archiver (db)] Error from TOC entry 3141; 0 16448 TABLE DATA users_role taiga
pg_restore: [archiver (db)] COPY failed for table "users_role": ERROR: duplicate key value violates unique constraint "users_role_pkey"
DETAIL: Key (id)=(37) already exists.
CONTEXT: COPY users_role, line 37
pg_restore: [archiver (db)] Error from TOC entry 3137; 0 16409 TABLE DATA users_user taiga
pg_restore: [archiver (db)] COPY failed for table "users_user": ERROR: duplicate key value violates unique constraint "users_user_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY users_user, line 1
pg_restore: [archiver (db)] Error from TOC entry 3175; 0 16983 TABLE DATA userstories_rolepoints taiga
pg_restore: [archiver (db)] COPY failed for table "userstories_rolepoints": ERROR: duplicate key value violates unique constraint "userstories_rolepoints_pkey"
DETAIL: Key (id)=(434) already exists.
CONTEXT: COPY userstories_rolepoints, line 433
pg_restore: [archiver (db)] Error from TOC entry 3177; 0 16991 TABLE DATA userstories_userstory taiga
pg_restore: [archiver (db)] COPY failed for table "userstories_userstory": ERROR: duplicate key value violates unique constraint "userstories_userstory_pkey"
DETAIL: Key (id)=(118) already exists.
CONTEXT: COPY userstories_userstory, line 72
pg_restore: [archiver (db)] Error from TOC entry 3245; 0 19041 TABLE DATA votes_vote taiga
pg_restore: [archiver (db)] COPY failed for table "votes_vote": ERROR: duplicate key value violates unique constraint "votes_vote_pkey"
DETAIL: Key (id)=(1) already exists.
CONTEXT: COPY votes_vote, line 1
pg_restore: [archiver (db)] Error from TOC entry 3247; 0 19050 TABLE DATA votes_votes taiga
pg_restore: [archiver (db)] COPY failed for table "votes_votes": ERROR: duplicate key value violates unique constraint "votes_votes_pkey"
DETAIL: Key (id)=(82) already exists.
CONTEXT: COPY votes_votes, line 1
pg_restore: [archiver (db)] Error from TOC entry 3203; 0 18192 TABLE DATA wiki_wikilink taiga
pg_restore: [archiver (db)] COPY failed for table "wiki_wikilink": ERROR: duplicate key value violates unique constraint "wiki_wikilink_pkey"
DETAIL: Key (id)=(44) already exists.
CONTEXT: COPY wiki_wikilink, line 44
pg_restore: [archiver (db)] Error from TOC entry 3205; 0 18204 TABLE DATA wiki_wikipage taiga
pg_restore: [archiver (db)] COPY failed for table "wiki_wikipage": ERROR: duplicate key value violates unique constraint "wiki_wikipage_pkey"
DETAIL: Key (id)=(23) already exists.
CONTEXT: COPY wiki_wikipage, line 23
pg_restore: [archiver (db)] Error from TOC entry 2618; 2606 16713 CONSTRAINT attachments_attachment_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "attachments_attachment" are not allowed
Command was: ALTER TABLE ONLY attachments_attachment
ADD CONSTRAINT attachments_attachment_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2626; 2606 16789 CONSTRAINT auth_group_name_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_name_key" already exists
Command was: ALTER TABLE ONLY auth_group
ADD CONSTRAINT auth_group_name_key UNIQUE (name);
pg_restore: [archiver (db)] Error from TOC entry 2632; 2606 16818 CONSTRAINT auth_group_permissions_group_id_0cd325b0_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_permissions_group_id_0cd325b0_uniq" already exists
Command was: ALTER TABLE ONLY auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_0cd325b0_uniq UNIQUE (group_id, p...
pg_restore: [archiver (db)] Error from TOC entry 2634; 2606 16797 CONSTRAINT auth_group_permissions_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "auth_group_permissions" are not allowed
Command was: ALTER TABLE ONLY auth_group_permissions
ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2628; 2606 16787 CONSTRAINT auth_group_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "auth_group" are not allowed
Command was: ALTER TABLE ONLY auth_group
ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2621; 2606 16804 CONSTRAINT auth_permission_content_type_id_01ab375a_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_permission_content_type_id_01ab375a_uniq" already exists
Command was: ALTER TABLE ONLY auth_permission
ADD CONSTRAINT auth_permission_content_type_id_01ab375a_uniq UNIQUE (content_type_id, c...
pg_restore: [archiver (db)] Error from TOC entry 2623; 2606 16779 CONSTRAINT auth_permission_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "auth_permission" are not allowed
Command was: ALTER TABLE ONLY auth_permission
ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2755; 2606 18177 CONSTRAINT contact_contactentry_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "contact_contactentry" are not allowed
Command was: ALTER TABLE ONLY contact_contactentry
ADD CONSTRAINT contact_contactentry_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2823; 2606 18567 CONSTRAINT custom_attributes_epiccustomattribute_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_epiccustomattribute" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_epiccustomattribute
ADD CONSTRAINT custom_attributes_epiccustomattribute_pkey PRIMARY...
pg_restore: [archiver (db)] Error from TOC entry 2825; 2606 18583 CONSTRAINT custom_attributes_epiccustomattribute_project_id_3850c31d_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattribute_project_id_3850c31d_uniq" already exists
Command was: ALTER TABLE ONLY custom_attributes_epiccustomattribute
ADD CONSTRAINT custom_attributes_epiccustomattribute_project_id_3...
pg_restore: [archiver (db)] Error from TOC entry 2828; 2606 18580 CONSTRAINT custom_attributes_epiccustomattributesvalues_epic_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattributesvalues_epic_id_key" already exists
Command was: ALTER TABLE ONLY custom_attributes_epiccustomattributesvalues
ADD CONSTRAINT custom_attributes_epiccustomattributesvalue...
pg_restore: [archiver (db)] Error from TOC entry 2830; 2606 18578 CONSTRAINT custom_attributes_epiccustomattributesvalues_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_epiccustomattributesvalues" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_epiccustomattributesvalues
ADD CONSTRAINT custom_attributes_epiccustomattributesvalue...
pg_restore: [archiver (db)] Error from TOC entry 2793; 2606 18412 CONSTRAINT custom_attributes_issuecustomattribute_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_issuecustomattribute" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_issuecustomattribute
ADD CONSTRAINT custom_attributes_issuecustomattribute_pkey PRIMA...
pg_restore: [archiver (db)] Error from TOC entry 2795; 2606 18440 CONSTRAINT custom_attributes_issuecustomattribute_project_id_6f71f010_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattribute_project_id_6f71f010_uniq" already exists
Command was: ALTER TABLE ONLY custom_attributes_issuecustomattribute
ADD CONSTRAINT custom_attributes_issuecustomattribute_project_id...
pg_restore: [archiver (db)] Error from TOC entry 2808; 2606 18471 CONSTRAINT custom_attributes_issuecustomattributesvalues_issue_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattributesvalues_issue_id_key" already exists
Command was: ALTER TABLE ONLY custom_attributes_issuecustomattributesvalues
ADD CONSTRAINT custom_attributes_issuecustomattributesval...
pg_restore: [archiver (db)] Error from TOC entry 2810; 2606 18469 CONSTRAINT custom_attributes_issuecustomattributesvalues_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_issuecustomattributesvalues" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_issuecustomattributesvalues
ADD CONSTRAINT custom_attributes_issuecustomattributesval...
pg_restore: [archiver (db)] Error from TOC entry 2798; 2606 18423 CONSTRAINT custom_attributes_taskcustomattribute_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_taskcustomattribute" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_taskcustomattribute
ADD CONSTRAINT custom_attributes_taskcustomattribute_pkey PRIMARY...
pg_restore: [archiver (db)] Error from TOC entry 2800; 2606 18438 CONSTRAINT custom_attributes_taskcustomattribute_project_id_c1c55ac2_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattribute_project_id_c1c55ac2_uniq" already exists
Command was: ALTER TABLE ONLY custom_attributes_taskcustomattribute
ADD CONSTRAINT custom_attributes_taskcustomattribute_project_id_c...
pg_restore: [archiver (db)] Error from TOC entry 2813; 2606 18482 CONSTRAINT custom_attributes_taskcustomattributesvalues_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_taskcustomattributesvalues" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_taskcustomattributesvalues
ADD CONSTRAINT custom_attributes_taskcustomattributesvalue...
pg_restore: [archiver (db)] Error from TOC entry 2815; 2606 18484 CONSTRAINT custom_attributes_taskcustomattributesvalues_task_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattributesvalues_task_id_key" already exists
Command was: ALTER TABLE ONLY custom_attributes_taskcustomattributesvalues
ADD CONSTRAINT custom_attributes_taskcustomattributesvalue...
pg_restore: [archiver (db)] Error from TOC entry 2802; 2606 18436 CONSTRAINT custom_attributes_userstorycustomattri_project_id_86c6b502_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattri_project_id_86c6b502_uniq" already exists
Command was: ALTER TABLE ONLY custom_attributes_userstorycustomattribute
ADD CONSTRAINT custom_attributes_userstorycustomattri_projec...
pg_restore: [archiver (db)] Error from TOC entry 2805; 2606 18434 CONSTRAINT custom_attributes_userstorycustomattribute_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_userstorycustomattribute" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_userstorycustomattribute
ADD CONSTRAINT custom_attributes_userstorycustomattribute_pk...
pg_restore: [archiver (db)] Error from TOC entry 2818; 2606 18497 CONSTRAINT custom_attributes_userstorycustomattributesva_user_story_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattributesva_user_story_id_key" already exists
Command was: ALTER TABLE ONLY custom_attributes_userstorycustomattributesvalues
ADD CONSTRAINT custom_attributes_userstorycustomattri...
pg_restore: [archiver (db)] Error from TOC entry 2820; 2606 18495 CONSTRAINT custom_attributes_userstorycustomattributesvalues_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "custom_attributes_userstorycustomattributesvalues" are not allowed
Command was: ALTER TABLE ONLY custom_attributes_userstorycustomattributesvalues
ADD CONSTRAINT custom_attributes_userstorycustomattri...
pg_restore: [archiver (db)] Error from TOC entry 2503; 2606 16432 CONSTRAINT django_admin_log_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "django_admin_log" are not allowed
Command was: ALTER TABLE ONLY django_admin_log
ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2489; 2606 16406 CONSTRAINT django_content_type_app_label_76bd3d3b_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_content_type_app_label_76bd3d3b_uniq" already exists
Command was: ALTER TABLE ONLY django_content_type
ADD CONSTRAINT django_content_type_app_label_76bd3d3b_uniq UNIQUE (app_label, model...
pg_restore: [archiver (db)] Error from TOC entry 2491; 2606 16404 CONSTRAINT django_content_type_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "django_content_type" are not allowed
Command was: ALTER TABLE ONLY django_content_type
ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2487; 2606 16396 CONSTRAINT django_migrations_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "django_migrations" are not allowed
Command was: ALTER TABLE ONLY django_migrations
ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2875; 2606 18904 CONSTRAINT django_session_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "django_session" are not allowed
Command was: ALTER TABLE ONLY django_session
ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key);
pg_restore: [archiver (db)] Error from TOC entry 2832; 2606 18680 CONSTRAINT djmail_message_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "djmail_message" are not allowed
Command was: ALTER TABLE ONLY djmail_message
ADD CONSTRAINT djmail_message_pkey PRIMARY KEY (uuid);
pg_restore: [archiver (db)] Error from TOC entry 2838; 2606 18689 CONSTRAINT easy_thumbnails_source_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "easy_thumbnails_source" are not allowed
Command was: ALTER TABLE ONLY easy_thumbnails_source
ADD CONSTRAINT easy_thumbnails_source_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2840; 2606 18701 CONSTRAINT easy_thumbnails_source_storage_hash_481ce32d_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source_storage_hash_481ce32d_uniq" already exists
Command was: ALTER TABLE ONLY easy_thumbnails_source
ADD CONSTRAINT easy_thumbnails_source_storage_hash_481ce32d_uniq UNIQUE (storage...
pg_restore: [archiver (db)] Error from TOC entry 2847; 2606 18697 CONSTRAINT easy_thumbnails_thumbnail_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "easy_thumbnails_thumbnail" are not allowed
Command was: ALTER TABLE ONLY easy_thumbnails_thumbnail
ADD CONSTRAINT easy_thumbnails_thumbnail_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2850; 2606 18699 CONSTRAINT easy_thumbnails_thumbnail_storage_hash_fb375270_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_storage_hash_fb375270_uniq" already exists
Command was: ALTER TABLE ONLY easy_thumbnails_thumbnail
ADD CONSTRAINT easy_thumbnails_thumbnail_storage_hash_fb375270_uniq UNIQUE (s...
pg_restore: [archiver (db)] Error from TOC entry 2852; 2606 18725 CONSTRAINT easy_thumbnails_thumbnaildimensions_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "easy_thumbnails_thumbnaildimensions" are not allowed
Command was: ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions
ADD CONSTRAINT easy_thumbnails_thumbnaildimensions_pkey PRIMARY KEY...
pg_restore: [archiver (db)] Error from TOC entry 2854; 2606 18727 CONSTRAINT easy_thumbnails_thumbnaildimensions_thumbnail_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnaildimensions_thumbnail_id_key" already exists
Command was: ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions
ADD CONSTRAINT easy_thumbnails_thumbnaildimensions_thumbnail_id_key...
pg_restore: [archiver (db)] Error from TOC entry 2784; 2606 18341 CONSTRAINT epics_epic_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "epics_epic" are not allowed
Command was: ALTER TABLE ONLY epics_epic
ADD CONSTRAINT epics_epic_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2788; 2606 18349 CONSTRAINT epics_relateduserstory_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "epics_relateduserstory" are not allowed
Command was: ALTER TABLE ONLY epics_relateduserstory
ADD CONSTRAINT epics_relateduserstory_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2790; 2606 18734 CONSTRAINT epics_relateduserstory_user_story_id_ad704d40_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_relateduserstory_user_story_id_ad704d40_uniq" already exists
Command was: ALTER TABLE ONLY epics_relateduserstory
ADD CONSTRAINT epics_relateduserstory_user_story_id_ad704d40_uniq UNIQUE (user_s...
pg_restore: [archiver (db)] Error from TOC entry 2857; 2606 18763 CONSTRAINT external_apps_application_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "external_apps_application" are not allowed
Command was: ALTER TABLE ONLY external_apps_application
ADD CONSTRAINT external_apps_application_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2861; 2606 18776 CONSTRAINT external_apps_applicationtoken_application_id_b6a9e9a8_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_applicationtoken_application_id_b6a9e9a8_uniq" already exists
Command was: ALTER TABLE ONLY external_apps_applicationtoken
ADD CONSTRAINT external_apps_applicationtoken_application_id_b6a9e9a8_un...
pg_restore: [archiver (db)] Error from TOC entry 2864; 2606 18774 CONSTRAINT external_apps_applicationtoken_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "external_apps_applicationtoken" are not allowed
Command was: ALTER TABLE ONLY external_apps_applicationtoken
ADD CONSTRAINT external_apps_applicationtoken_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2866; 2606 18801 CONSTRAINT feedback_feedbackentry_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "feedback_feedbackentry" are not allowed
Command was: ALTER TABLE ONLY feedback_feedbackentry
ADD CONSTRAINT feedback_feedbackentry_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2777; 2606 18302 CONSTRAINT history_historyentry_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "history_historyentry" are not allowed
Command was: ALTER TABLE ONLY history_historyentry
ADD CONSTRAINT history_historyentry_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2657; 2606 16909 CONSTRAINT issues_issue_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "issues_issue" are not allowed
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2739; 2606 17649 CONSTRAINT likes_like_content_type_id_e20903f0_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "likes_like_content_type_id_e20903f0_uniq" already exists
Command was: ALTER TABLE ONLY likes_like
ADD CONSTRAINT likes_like_content_type_id_e20903f0_uniq UNIQUE (content_type_id, object_id, ...
pg_restore: [archiver (db)] Error from TOC entry 2742; 2606 17635 CONSTRAINT likes_like_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "likes_like" are not allowed
Command was: ALTER TABLE ONLY likes_like
ADD CONSTRAINT likes_like_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2641; 2606 16866 CONSTRAINT milestones_milestone_name_fe19fd36_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_name_fe19fd36_uniq" already exists
Command was: ALTER TABLE ONLY milestones_milestone
ADD CONSTRAINT milestones_milestone_name_fe19fd36_uniq UNIQUE (name, project_id);
pg_restore: [archiver (db)] Error from TOC entry 2643; 2606 16856 CONSTRAINT milestones_milestone_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "milestones_milestone" are not allowed
Command was: ALTER TABLE ONLY milestones_milestone
ADD CONSTRAINT milestones_milestone_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2646; 2606 16868 CONSTRAINT milestones_milestone_slug_e59bac6a_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_slug_e59bac6a_uniq" already exists
Command was: ALTER TABLE ONLY milestones_milestone
ADD CONSTRAINT milestones_milestone_slug_e59bac6a_uniq UNIQUE (slug, project_id);
pg_restore: [archiver (db)] Error from TOC entry 2694; 2606 17261 CONSTRAINT notifications_histor_historychangenotification_id_3b0f323b_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_histor_historychangenotification_id_3b0f323b_uniq" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification_notify_users
ADD CONSTRAINT notifications_histor_historychangen...
pg_restore: [archiver (db)] Error from TOC entry 2687; 2606 18313 CONSTRAINT notifications_histor_historychangenotification_id_8fb55cdd_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_histor_historychangenotification_id_8fb55cdd_uniq" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification_history_entries
ADD CONSTRAINT notifications_histor_historychan...
pg_restore: [archiver (db)] Error from TOC entry 2692; 2606 18315 CONSTRAINT notifications_historychangenotification_history_entries_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "notifications_historychangenotification_history_entries" are not allowed
Command was: ALTER TABLE ONLY notifications_historychangenotification_history_entries
ADD CONSTRAINT notifications_historychangenotif...
pg_restore: [archiver (db)] Error from TOC entry 2683; 2606 17265 CONSTRAINT notifications_historychangenotification_key_869f948f_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_key_869f948f_uniq" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification
ADD CONSTRAINT notifications_historychangenotification_key_869f...
pg_restore: [archiver (db)] Error from TOC entry 2698; 2606 17222 CONSTRAINT notifications_historychangenotification_notify_users_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "notifications_historychangenotification_notify_users" are not allowed
Command was: ALTER TABLE ONLY notifications_historychangenotification_notify_users
ADD CONSTRAINT notifications_historychangenotifica...
pg_restore: [archiver (db)] Error from TOC entry 2685; 2606 17206 CONSTRAINT notifications_historychangenotification_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "notifications_historychangenotification" are not allowed
Command was: ALTER TABLE ONLY notifications_historychangenotification
ADD CONSTRAINT notifications_historychangenotification_pkey PRI...
pg_restore: [archiver (db)] Error from TOC entry 2677; 2606 17155 CONSTRAINT notifications_notifypolicy_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "notifications_notifypolicy" are not allowed
Command was: ALTER TABLE ONLY notifications_notifypolicy
ADD CONSTRAINT notifications_notifypolicy_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2679; 2606 17157 CONSTRAINT notifications_notifypolicy_project_id_e7aa5cf2_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_notifypolicy_project_id_e7aa5cf2_uniq" already exists
Command was: ALTER TABLE ONLY notifications_notifypolicy
ADD CONSTRAINT notifications_notifypolicy_project_id_e7aa5cf2_uniq UNIQUE (p...
pg_restore: [archiver (db)] Error from TOC entry 2702; 2606 17276 CONSTRAINT notifications_watched_content_type_id_e7c27769_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_watched_content_type_id_e7c27769_uniq" already exists
Command was: ALTER TABLE ONLY notifications_watched
ADD CONSTRAINT notifications_watched_content_type_id_e7c27769_uniq UNIQUE (conten...
pg_restore: [archiver (db)] Error from TOC entry 2705; 2606 17274 CONSTRAINT notifications_watched_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "notifications_watched" are not allowed
Command was: ALTER TABLE ONLY notifications_watched
ADD CONSTRAINT notifications_watched_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2746; 2606 18005 CONSTRAINT projects_epicstatus_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_epicstatus" are not allowed
Command was: ALTER TABLE ONLY projects_epicstatus
ADD CONSTRAINT projects_epicstatus_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2748; 2606 18057 CONSTRAINT projects_epicstatus_project_id_b71c417e_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus_project_id_b71c417e_uniq" already exists
Command was: ALTER TABLE ONLY projects_epicstatus
ADD CONSTRAINT projects_epicstatus_project_id_b71c417e_uniq UNIQUE (project_id, nam...
pg_restore: [archiver (db)] Error from TOC entry 2750; 2606 18055 CONSTRAINT projects_epicstatus_project_id_f67857e5_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus_project_id_f67857e5_uniq" already exists
Command was: ALTER TABLE ONLY projects_epicstatus
ADD CONSTRAINT projects_epicstatus_project_id_f67857e5_uniq UNIQUE (project_id, slu...
pg_restore: [archiver (db)] Error from TOC entry 2564; 2606 16528 CONSTRAINT projects_issuestatus_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_issuestatus" are not allowed
Command was: ALTER TABLE ONLY projects_issuestatus
ADD CONSTRAINT projects_issuestatus_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2566; 2606 16603 CONSTRAINT projects_issuestatus_project_id_a88dd6c0_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus_project_id_a88dd6c0_uniq" already exists
Command was: ALTER TABLE ONLY projects_issuestatus
ADD CONSTRAINT projects_issuestatus_project_id_a88dd6c0_uniq UNIQUE (project_id, n...
pg_restore: [archiver (db)] Error from TOC entry 2568; 2606 17473 CONSTRAINT projects_issuestatus_project_id_ca3e758d_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus_project_id_ca3e758d_uniq" already exists
Command was: ALTER TABLE ONLY projects_issuestatus
ADD CONSTRAINT projects_issuestatus_project_id_ca3e758d_uniq UNIQUE (project_id, s...
pg_restore: [archiver (db)] Error from TOC entry 2572; 2606 16536 CONSTRAINT projects_issuetype_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_issuetype" are not allowed
Command was: ALTER TABLE ONLY projects_issuetype
ADD CONSTRAINT projects_issuetype_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2574; 2606 16601 CONSTRAINT projects_issuetype_project_id_41b47d87_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuetype_project_id_41b47d87_uniq" already exists
Command was: ALTER TABLE ONLY projects_issuetype
ADD CONSTRAINT projects_issuetype_project_id_41b47d87_uniq UNIQUE (project_id, name)...
pg_restore: [archiver (db)] Error from TOC entry 2516; 2606 16466 CONSTRAINT projects_membership_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_membership" are not allowed
Command was: ALTER TABLE ONLY projects_membership
ADD CONSTRAINT projects_membership_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2518; 2606 16488 CONSTRAINT projects_membership_user_id_a2829f61_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership_user_id_a2829f61_uniq" already exists
Command was: ALTER TABLE ONLY projects_membership
ADD CONSTRAINT projects_membership_user_id_a2829f61_uniq UNIQUE (user_id, project_i...
pg_restore: [archiver (db)] Error from TOC entry 2577; 2606 16544 CONSTRAINT projects_points_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_points" are not allowed
Command was: ALTER TABLE ONLY projects_points
ADD CONSTRAINT projects_points_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2579; 2606 16599 CONSTRAINT projects_points_project_id_900c69f4_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_points_project_id_900c69f4_uniq" already exists
Command was: ALTER TABLE ONLY projects_points
ADD CONSTRAINT projects_points_project_id_900c69f4_uniq UNIQUE (project_id, name);
pg_restore: [archiver (db)] Error from TOC entry 2582; 2606 16552 CONSTRAINT projects_priority_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_priority" are not allowed
Command was: ALTER TABLE ONLY projects_priority
ADD CONSTRAINT projects_priority_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2584; 2606 16597 CONSTRAINT projects_priority_project_id_ca316bb1_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_priority_project_id_ca316bb1_uniq" already exists
Command was: ALTER TABLE ONLY projects_priority
ADD CONSTRAINT projects_priority_project_id_ca316bb1_uniq UNIQUE (project_id, name);
pg_restore: [archiver (db)] Error from TOC entry 2533; 2606 18053 CONSTRAINT projects_project_default_epic_status_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_epic_status_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_epic_status_id_key UNIQUE (default_epic_status...
pg_restore: [archiver (db)] Error from TOC entry 2535; 2606 16605 CONSTRAINT projects_project_default_issue_status_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_issue_status_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_issue_status_id_key UNIQUE (default_issue_stat...
pg_restore: [archiver (db)] Error from TOC entry 2537; 2606 16607 CONSTRAINT projects_project_default_issue_type_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_issue_type_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_issue_type_id_key UNIQUE (default_issue_type_i...
pg_restore: [archiver (db)] Error from TOC entry 2539; 2606 16609 CONSTRAINT projects_project_default_points_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_points_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_points_id_key UNIQUE (default_points_id);
pg_restore: [archiver (db)] Error from TOC entry 2541; 2606 16611 CONSTRAINT projects_project_default_priority_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_priority_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_priority_id_key UNIQUE (default_priority_id);
pg_restore: [archiver (db)] Error from TOC entry 2543; 2606 16613 CONSTRAINT projects_project_default_severity_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_severity_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_severity_id_key UNIQUE (default_severity_id);
pg_restore: [archiver (db)] Error from TOC entry 2545; 2606 16615 CONSTRAINT projects_project_default_task_status_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_task_status_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_task_status_id_key UNIQUE (default_task_status...
pg_restore: [archiver (db)] Error from TOC entry 2547; 2606 16617 CONSTRAINT projects_project_default_us_status_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_default_us_status_id_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_default_us_status_id_key UNIQUE (default_us_status_id)...
pg_restore: [archiver (db)] Error from TOC entry 2554; 2606 16477 CONSTRAINT projects_project_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_project" are not allowed
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2557; 2606 16481 CONSTRAINT projects_project_slug_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_slug_key" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_slug_key UNIQUE (slug);
pg_restore: [archiver (db)] Error from TOC entry 2723; 2606 17488 CONSTRAINT projects_projectmodulesconfig_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_projectmodulesconfig" are not allowed
Command was: ALTER TABLE ONLY projects_projectmodulesconfig
ADD CONSTRAINT projects_projectmodulesconfig_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2725; 2606 17490 CONSTRAINT projects_projectmodulesconfig_project_id_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projectmodulesconfig_project_id_key" already exists
Command was: ALTER TABLE ONLY projects_projectmodulesconfig
ADD CONSTRAINT projects_projectmodulesconfig_project_id_key UNIQUE (proje...
pg_restore: [archiver (db)] Error from TOC entry 2586; 2606 16563 CONSTRAINT projects_projecttemplate_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_projecttemplate" are not allowed
Command was: ALTER TABLE ONLY projects_projecttemplate
ADD CONSTRAINT projects_projecttemplate_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2589; 2606 16565 CONSTRAINT projects_projecttemplate_slug_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projecttemplate_slug_key" already exists
Command was: ALTER TABLE ONLY projects_projecttemplate
ADD CONSTRAINT projects_projecttemplate_slug_key UNIQUE (slug);
pg_restore: [archiver (db)] Error from TOC entry 2592; 2606 16573 CONSTRAINT projects_severity_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_severity" are not allowed
Command was: ALTER TABLE ONLY projects_severity
ADD CONSTRAINT projects_severity_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2594; 2606 16595 CONSTRAINT projects_severity_project_id_6187c456_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_severity_project_id_6187c456_uniq" already exists
Command was: ALTER TABLE ONLY projects_severity
ADD CONSTRAINT projects_severity_project_id_6187c456_uniq UNIQUE (project_id, name);
pg_restore: [archiver (db)] Error from TOC entry 2598; 2606 16581 CONSTRAINT projects_taskstatus_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_taskstatus" are not allowed
Command was: ALTER TABLE ONLY projects_taskstatus
ADD CONSTRAINT projects_taskstatus_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2600; 2606 17475 CONSTRAINT projects_taskstatus_project_id_30401ba3_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus_project_id_30401ba3_uniq" already exists
Command was: ALTER TABLE ONLY projects_taskstatus
ADD CONSTRAINT projects_taskstatus_project_id_30401ba3_uniq UNIQUE (project_id, slu...
pg_restore: [archiver (db)] Error from TOC entry 2602; 2606 16593 CONSTRAINT projects_taskstatus_project_id_4b65b78f_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus_project_id_4b65b78f_uniq" already exists
Command was: ALTER TABLE ONLY projects_taskstatus
ADD CONSTRAINT projects_taskstatus_project_id_4b65b78f_uniq UNIQUE (project_id, nam...
pg_restore: [archiver (db)] Error from TOC entry 2607; 2606 16589 CONSTRAINT projects_userstorystatus_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "projects_userstorystatus" are not allowed
Command was: ALTER TABLE ONLY projects_userstorystatus
ADD CONSTRAINT projects_userstorystatus_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2609; 2606 16591 CONSTRAINT projects_userstorystatus_project_id_7c0a1351_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus_project_id_7c0a1351_uniq" already exists
Command was: ALTER TABLE ONLY projects_userstorystatus
ADD CONSTRAINT projects_userstorystatus_project_id_7c0a1351_uniq UNIQUE (proje...
pg_restore: [archiver (db)] Error from TOC entry 2611; 2606 17477 CONSTRAINT projects_userstorystatus_project_id_97a888b5_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus_project_id_97a888b5_uniq" already exists
Command was: ALTER TABLE ONLY projects_userstorystatus
ADD CONSTRAINT projects_userstorystatus_project_id_97a888b5_uniq UNIQUE (proje...
pg_restore: [archiver (db)] Error from TOC entry 2870; 2606 18882 CONSTRAINT references_reference_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "references_reference" are not allowed
Command was: ALTER TABLE ONLY references_reference
ADD CONSTRAINT references_reference_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2872; 2606 18884 CONSTRAINT references_reference_project_id_82d64d63_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "references_reference_project_id_82d64d63_uniq" already exists
Command was: ALTER TABLE ONLY references_reference
ADD CONSTRAINT references_reference_project_id_82d64d63_uniq UNIQUE (project_id, r...
pg_restore: [archiver (db)] Error from TOC entry 2714; 2606 17305 CONSTRAINT tasks_task_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "tasks_task" are not allowed
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2736; 2606 17527 CONSTRAINT timeline_timeline_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "timeline_timeline" are not allowed
Command was: ALTER TABLE ONLY timeline_timeline
ADD CONSTRAINT timeline_timeline_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2718; 2606 17417 CONSTRAINT users_authdata_key_7ee3acc9_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_authdata_key_7ee3acc9_uniq" already exists
Command was: ALTER TABLE ONLY users_authdata
ADD CONSTRAINT users_authdata_key_7ee3acc9_uniq UNIQUE (key, value);
pg_restore: [archiver (db)] Error from TOC entry 2721; 2606 17415 CONSTRAINT users_authdata_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "users_authdata" are not allowed
Command was: ALTER TABLE ONLY users_authdata
ADD CONSTRAINT users_authdata_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2507; 2606 16456 CONSTRAINT users_role_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "users_role" are not allowed
Command was: ALTER TABLE ONLY users_role
ADD CONSTRAINT users_role_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2510; 2606 16822 CONSTRAINT users_role_slug_db8c270c_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_role_slug_db8c270c_uniq" already exists
Command was: ALTER TABLE ONLY users_role
ADD CONSTRAINT users_role_slug_db8c270c_uniq UNIQUE (slug, project_id);
pg_restore: [archiver (db)] Error from TOC entry 2494; 2606 16830 CONSTRAINT users_user_email_243f6e77_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_user_email_243f6e77_uniq" already exists
Command was: ALTER TABLE ONLY users_user
ADD CONSTRAINT users_user_email_243f6e77_uniq UNIQUE (email);
pg_restore: [archiver (db)] Error from TOC entry 2496; 2606 16417 CONSTRAINT users_user_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "users_user" are not allowed
Command was: ALTER TABLE ONLY users_user
ADD CONSTRAINT users_user_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2499; 2606 16833 CONSTRAINT users_user_username_key taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_user_username_key" already exists
Command was: ALTER TABLE ONLY users_user
ADD CONSTRAINT users_user_username_key UNIQUE (username);
pg_restore: [archiver (db)] Error from TOC entry 2879; 2606 18978 CONSTRAINT userstorage_storageentry_owner_id_746399cb_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstorage_storageentry_owner_id_746399cb_uniq" already exists
Command was: ALTER TABLE ONLY userstorage_storageentry
ADD CONSTRAINT userstorage_storageentry_owner_id_746399cb_uniq UNIQUE (owner_i...
pg_restore: [archiver (db)] Error from TOC entry 2881; 2606 18976 CONSTRAINT userstorage_storageentry_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "userstorage_storageentry" are not allowed
Command was: ALTER TABLE ONLY userstorage_storageentry
ADD CONSTRAINT userstorage_storageentry_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2662; 2606 16988 CONSTRAINT userstories_rolepoints_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "userstories_rolepoints" are not allowed
Command was: ALTER TABLE ONLY userstories_rolepoints
ADD CONSTRAINT userstories_rolepoints_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2664; 2606 17010 CONSTRAINT userstories_rolepoints_user_story_id_dc0ba15e_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_rolepoints_user_story_id_dc0ba15e_uniq" already exists
Command was: ALTER TABLE ONLY userstories_rolepoints
ADD CONSTRAINT userstories_rolepoints_user_story_id_dc0ba15e_uniq UNIQUE (user_s...
pg_restore: [archiver (db)] Error from TOC entry 2673; 2606 17000 CONSTRAINT userstories_userstory_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "userstories_userstory" are not allowed
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_userstory_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2884; 2606 19061 CONSTRAINT votes_vote_content_type_id_97d16fa0_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_vote_content_type_id_97d16fa0_uniq" already exists
Command was: ALTER TABLE ONLY votes_vote
ADD CONSTRAINT votes_vote_content_type_id_97d16fa0_uniq UNIQUE (content_type_id, object_id, ...
pg_restore: [archiver (db)] Error from TOC entry 2887; 2606 19047 CONSTRAINT votes_vote_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "votes_vote" are not allowed
Command was: ALTER TABLE ONLY votes_vote
ADD CONSTRAINT votes_vote_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2890; 2606 19059 CONSTRAINT votes_votes_content_type_id_5abfc91b_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_votes_content_type_id_5abfc91b_uniq" already exists
Command was: ALTER TABLE ONLY votes_votes
ADD CONSTRAINT votes_votes_content_type_id_5abfc91b_uniq UNIQUE (content_type_id, object_id...
pg_restore: [archiver (db)] Error from TOC entry 2892; 2606 19057 CONSTRAINT votes_votes_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "votes_votes" are not allowed
Command was: ALTER TABLE ONLY votes_votes
ADD CONSTRAINT votes_votes_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2895; 2606 19103 CONSTRAINT webhooks_webhook_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "webhooks_webhook" are not allowed
Command was: ALTER TABLE ONLY webhooks_webhook
ADD CONSTRAINT webhooks_webhook_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2898; 2606 19114 CONSTRAINT webhooks_webhooklog_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "webhooks_webhooklog" are not allowed
Command was: ALTER TABLE ONLY webhooks_webhooklog
ADD CONSTRAINT webhooks_webhooklog_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2760; 2606 18201 CONSTRAINT wiki_wikilink_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "wiki_wikilink" are not allowed
Command was: ALTER TABLE ONLY wiki_wikilink
ADD CONSTRAINT wiki_wikilink_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2762; 2606 18224 CONSTRAINT wiki_wikilink_project_id_a39ae7e7_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikilink_project_id_a39ae7e7_uniq" already exists
Command was: ALTER TABLE ONLY wiki_wikilink
ADD CONSTRAINT wiki_wikilink_project_id_a39ae7e7_uniq UNIQUE (project_id, href);
pg_restore: [archiver (db)] Error from TOC entry 2768; 2606 18212 CONSTRAINT wiki_wikipage_pkey taiga
pg_restore: [archiver (db)] could not execute query: ERROR: multiple primary keys for table "wiki_wikipage" are not allowed
Command was: ALTER TABLE ONLY wiki_wikipage
ADD CONSTRAINT wiki_wikipage_pkey PRIMARY KEY (id);
pg_restore: [archiver (db)] Error from TOC entry 2770; 2606 18222 CONSTRAINT wiki_wikipage_project_id_cb5b63e2_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_project_id_cb5b63e2_uniq" already exists
Command was: ALTER TABLE ONLY wiki_wikipage
ADD CONSTRAINT wiki_wikipage_project_id_cb5b63e2_uniq UNIQUE (project_id, slug);
pg_restore: [archiver (db)] Error from TOC entry 2613; 1259 16729 INDEX attachments_attachment_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "attachments_attachment_417f1b1c" already exists
Command was: CREATE INDEX attachments_attachment_417f1b1c ON attachments_attachment USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2614; 1259 16730 INDEX attachments_attachment_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "attachments_attachment_5e7b1936" already exists
Command was: CREATE INDEX attachments_attachment_5e7b1936 ON attachments_attachment USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2615; 1259 16731 INDEX attachments_attachment_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "attachments_attachment_b098ad43" already exists
Command was: CREATE INDEX attachments_attachment_b098ad43 ON attachments_attachment USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2616; 1259 16759 INDEX attachments_attachment_content_type_id_3f2e447c_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "attachments_attachment_content_type_id_3f2e447c_idx" already exists
Command was: CREATE INDEX attachments_attachment_content_type_id_3f2e447c_idx ON attachments_attachment USING btree (content_type_id, obj...
pg_restore: [archiver (db)] Error from TOC entry 2624; 1259 16806 INDEX auth_group_name_a6ea08ec_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_name_a6ea08ec_like" already exists
Command was: CREATE INDEX auth_group_name_a6ea08ec_like ON auth_group USING btree (name varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2629; 1259 16819 INDEX auth_group_permissions_0e939a4f taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_permissions_0e939a4f" already exists
Command was: CREATE INDEX auth_group_permissions_0e939a4f ON auth_group_permissions USING btree (group_id);
pg_restore: [archiver (db)] Error from TOC entry 2630; 1259 16820 INDEX auth_group_permissions_8373b171 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_group_permissions_8373b171" already exists
Command was: CREATE INDEX auth_group_permissions_8373b171 ON auth_group_permissions USING btree (permission_id);
pg_restore: [archiver (db)] Error from TOC entry 2619; 1259 16805 INDEX auth_permission_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "auth_permission_417f1b1c" already exists
Command was: CREATE INDEX auth_permission_417f1b1c ON auth_permission USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2752; 1259 18188 INDEX contact_contactentry_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "contact_contactentry_b098ad43" already exists
Command was: CREATE INDEX contact_contactentry_b098ad43 ON contact_contactentry USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2753; 1259 18189 INDEX contact_contactentry_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "contact_contactentry_e8701ad4" already exists
Command was: CREATE INDEX contact_contactentry_e8701ad4 ON contact_contactentry USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2821; 1259 18590 INDEX custom_attributes_epiccustomattribute_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattribute_b098ad43" already exists
Command was: CREATE INDEX custom_attributes_epiccustomattribute_b098ad43 ON custom_attributes_epiccustomattribute USING btree (project_id...
pg_restore: [archiver (db)] Error from TOC entry 2826; 1259 18581 INDEX custom_attributes_epiccustomattributesvalu_epic_id_d413e57a_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_epiccustomattributesvalu_epic_id_d413e57a_idx" already exists
Command was: CREATE INDEX custom_attributes_epiccustomattributesvalu_epic_id_d413e57a_idx ON custom_attributes_epiccustomattributesvalues...
pg_restore: [archiver (db)] Error from TOC entry 2791; 1259 18446 INDEX custom_attributes_issuecustomattribute_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattribute_b098ad43" already exists
Command was: CREATE INDEX custom_attributes_issuecustomattribute_b098ad43 ON custom_attributes_issuecustomattribute USING btree (project_...
pg_restore: [archiver (db)] Error from TOC entry 2806; 1259 18554 INDEX custom_attributes_issuecustomattributesva_issue_id_868161f8_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_issuecustomattributesva_issue_id_868161f8_idx" already exists
Command was: CREATE INDEX custom_attributes_issuecustomattributesva_issue_id_868161f8_idx ON custom_attributes_issuecustomattributesvalue...
pg_restore: [archiver (db)] Error from TOC entry 2796; 1259 18452 INDEX custom_attributes_taskcustomattribute_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattribute_b098ad43" already exists
Command was: CREATE INDEX custom_attributes_taskcustomattribute_b098ad43 ON custom_attributes_taskcustomattribute USING btree (project_id...
pg_restore: [archiver (db)] Error from TOC entry 2811; 1259 18555 INDEX custom_attributes_taskcustomattributesvalu_task_id_3d1ccf5e_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_taskcustomattributesvalu_task_id_3d1ccf5e_idx" already exists
Command was: CREATE INDEX custom_attributes_taskcustomattributesvalu_task_id_3d1ccf5e_idx ON custom_attributes_taskcustomattributesvalues...
pg_restore: [archiver (db)] Error from TOC entry 2816; 1259 18556 INDEX custom_attributes_userstorycustomatt_user_story_id_99b10c43_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomatt_user_story_id_99b10c43_idx" already exists
Command was: CREATE INDEX custom_attributes_userstorycustomatt_user_story_id_99b10c43_idx ON custom_attributes_userstorycustomattributesv...
pg_restore: [archiver (db)] Error from TOC entry 2803; 1259 18458 INDEX custom_attributes_userstorycustomattribute_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "custom_attributes_userstorycustomattribute_b098ad43" already exists
Command was: CREATE INDEX custom_attributes_userstorycustomattribute_b098ad43 ON custom_attributes_userstorycustomattribute USING btree (...
pg_restore: [archiver (db)] Error from TOC entry 2500; 1259 16443 INDEX django_admin_log_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_admin_log_417f1b1c" already exists
Command was: CREATE INDEX django_admin_log_417f1b1c ON django_admin_log USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2501; 1259 16444 INDEX django_admin_log_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_admin_log_e8701ad4" already exists
Command was: CREATE INDEX django_admin_log_e8701ad4 ON django_admin_log USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2873; 1259 18905 INDEX django_session_de54fa62 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_session_de54fa62" already exists
Command was: CREATE INDEX django_session_de54fa62 ON django_session USING btree (expire_date);
pg_restore: [archiver (db)] Error from TOC entry 2876; 1259 18906 INDEX django_session_session_key_c0390e0f_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "django_session_session_key_c0390e0f_like" already exists
Command was: CREATE INDEX django_session_session_key_c0390e0f_like ON django_session USING btree (session_key varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2833; 1259 18681 INDEX djmail_message_uuid_8dad4f24_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "djmail_message_uuid_8dad4f24_like" already exists
Command was: CREATE INDEX djmail_message_uuid_8dad4f24_like ON djmail_message USING btree (uuid varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2834; 1259 18703 INDEX easy_thumbnails_source_b068931c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source_b068931c" already exists
Command was: CREATE INDEX easy_thumbnails_source_b068931c ON easy_thumbnails_source USING btree (name);
pg_restore: [archiver (db)] Error from TOC entry 2835; 1259 18702 INDEX easy_thumbnails_source_b454e115 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source_b454e115" already exists
Command was: CREATE INDEX easy_thumbnails_source_b454e115 ON easy_thumbnails_source USING btree (storage_hash);
pg_restore: [archiver (db)] Error from TOC entry 2836; 1259 18705 INDEX easy_thumbnails_source_name_5fe0edc6_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source_name_5fe0edc6_like" already exists
Command was: CREATE INDEX easy_thumbnails_source_name_5fe0edc6_like ON easy_thumbnails_source USING btree (name varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2841; 1259 18704 INDEX easy_thumbnails_source_storage_hash_946cbcc9_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_source_storage_hash_946cbcc9_like" already exists
Command was: CREATE INDEX easy_thumbnails_source_storage_hash_946cbcc9_like ON easy_thumbnails_source USING btree (storage_hash varchar_p...
pg_restore: [archiver (db)] Error from TOC entry 2842; 1259 18713 INDEX easy_thumbnails_thumbnail_0afd9202 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_0afd9202" already exists
Command was: CREATE INDEX easy_thumbnails_thumbnail_0afd9202 ON easy_thumbnails_thumbnail USING btree (source_id);
pg_restore: [archiver (db)] Error from TOC entry 2843; 1259 18712 INDEX easy_thumbnails_thumbnail_b068931c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_b068931c" already exists
Command was: CREATE INDEX easy_thumbnails_thumbnail_b068931c ON easy_thumbnails_thumbnail USING btree (name);
pg_restore: [archiver (db)] Error from TOC entry 2844; 1259 18711 INDEX easy_thumbnails_thumbnail_b454e115 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_b454e115" already exists
Command was: CREATE INDEX easy_thumbnails_thumbnail_b454e115 ON easy_thumbnails_thumbnail USING btree (storage_hash);
pg_restore: [archiver (db)] Error from TOC entry 2845; 1259 18715 INDEX easy_thumbnails_thumbnail_name_b5882c31_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_name_b5882c31_like" already exists
Command was: CREATE INDEX easy_thumbnails_thumbnail_name_b5882c31_like ON easy_thumbnails_thumbnail USING btree (name varchar_pattern_ops...
pg_restore: [archiver (db)] Error from TOC entry 2848; 1259 18714 INDEX easy_thumbnails_thumbnail_storage_hash_f1435f49_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "easy_thumbnails_thumbnail_storage_hash_f1435f49_like" already exists
Command was: CREATE INDEX easy_thumbnails_thumbnail_storage_hash_f1435f49_like ON easy_thumbnails_thumbnail USING btree (storage_hash var...
pg_restore: [archiver (db)] Error from TOC entry 2778; 1259 18373 INDEX epics_epic_02c1725c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic_02c1725c" already exists
Command was: CREATE INDEX epics_epic_02c1725c ON epics_epic USING btree (assigned_to_id);
pg_restore: [archiver (db)] Error from TOC entry 2779; 1259 18372 INDEX epics_epic_18389a4a taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic_18389a4a" already exists
Command was: CREATE INDEX epics_epic_18389a4a ON epics_epic USING btree (ref);
pg_restore: [archiver (db)] Error from TOC entry 2780; 1259 18374 INDEX epics_epic_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic_5e7b1936" already exists
Command was: CREATE INDEX epics_epic_5e7b1936 ON epics_epic USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2781; 1259 18375 INDEX epics_epic_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic_b098ad43" already exists
Command was: CREATE INDEX epics_epic_b098ad43 ON epics_epic USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2782; 1259 18376 INDEX epics_epic_dc91ed4b taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_epic_dc91ed4b" already exists
Command was: CREATE INDEX epics_epic_dc91ed4b ON epics_epic USING btree (status_id);
pg_restore: [archiver (db)] Error from TOC entry 2785; 1259 18387 INDEX epics_relateduserstory_647d6da6 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_relateduserstory_647d6da6" already exists
Command was: CREATE INDEX epics_relateduserstory_647d6da6 ON epics_relateduserstory USING btree (epic_id);
pg_restore: [archiver (db)] Error from TOC entry 2786; 1259 18388 INDEX epics_relateduserstory_8fde7968 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "epics_relateduserstory_8fde7968" already exists
Command was: CREATE INDEX epics_relateduserstory_8fde7968 ON epics_relateduserstory USING btree (user_story_id);
pg_restore: [archiver (db)] Error from TOC entry 2855; 1259 18777 INDEX external_apps_application_id_e9988cf8_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_application_id_e9988cf8_like" already exists
Command was: CREATE INDEX external_apps_application_id_e9988cf8_like ON external_apps_application USING btree (id varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2858; 1259 18788 INDEX external_apps_applicationtoken_6bc0a4eb taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_applicationtoken_6bc0a4eb" already exists
Command was: CREATE INDEX external_apps_applicationtoken_6bc0a4eb ON external_apps_applicationtoken USING btree (application_id);
pg_restore: [archiver (db)] Error from TOC entry 2859; 1259 18790 INDEX external_apps_applicationtoken_application_id_0e934655_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_applicationtoken_application_id_0e934655_like" already exists
Command was: CREATE INDEX external_apps_applicationtoken_application_id_0e934655_like ON external_apps_applicationtoken USING btree (appl...
pg_restore: [archiver (db)] Error from TOC entry 2862; 1259 18789 INDEX external_apps_applicationtoken_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "external_apps_applicationtoken_e8701ad4" already exists
Command was: CREATE INDEX external_apps_applicationtoken_e8701ad4 ON external_apps_applicationtoken USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2772; 1259 18308 INDEX history_historyentry_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "history_historyentry_b098ad43" already exists
Command was: CREATE INDEX history_historyentry_b098ad43 ON history_historyentry USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2773; 1259 18311 INDEX history_historyentry_id_ff18cc9f_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "history_historyentry_id_ff18cc9f_like" already exists
Command was: CREATE INDEX history_historyentry_id_ff18cc9f_like ON history_historyentry USING btree (id varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2774; 1259 18309 INDEX history_historyentry_key_c088c4ae_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "history_historyentry_key_c088c4ae_like" already exists
Command was: CREATE INDEX history_historyentry_key_c088c4ae_like ON history_historyentry USING btree (key varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2775; 1259 18310 INDEX history_historyentry_key_c088c4ae_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "history_historyentry_key_c088c4ae_uniq" already exists
Command was: CREATE INDEX history_historyentry_key_c088c4ae_uniq ON history_historyentry USING btree (key);
pg_restore: [archiver (db)] Error from TOC entry 2647; 1259 16959 INDEX issues_issue_02c1725c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_02c1725c" already exists
Command was: CREATE INDEX issues_issue_02c1725c ON issues_issue USING btree (assigned_to_id);
pg_restore: [archiver (db)] Error from TOC entry 2648; 1259 16958 INDEX issues_issue_18389a4a taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_18389a4a" already exists
Command was: CREATE INDEX issues_issue_18389a4a ON issues_issue USING btree (ref);
pg_restore: [archiver (db)] Error from TOC entry 2649; 1259 16964 INDEX issues_issue_4449c1fa taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_4449c1fa" already exists
Command was: CREATE INDEX issues_issue_4449c1fa ON issues_issue USING btree (severity_id);
pg_restore: [archiver (db)] Error from TOC entry 2650; 1259 16961 INDEX issues_issue_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_5e7b1936" already exists
Command was: CREATE INDEX issues_issue_5e7b1936 ON issues_issue USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2651; 1259 16962 INDEX issues_issue_8fb0ef36 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_8fb0ef36" already exists
Command was: CREATE INDEX issues_issue_8fb0ef36 ON issues_issue USING btree (priority_id);
pg_restore: [archiver (db)] Error from TOC entry 2652; 1259 16966 INDEX issues_issue_94757cae taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_94757cae" already exists
Command was: CREATE INDEX issues_issue_94757cae ON issues_issue USING btree (type_id);
pg_restore: [archiver (db)] Error from TOC entry 2653; 1259 16963 INDEX issues_issue_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_b098ad43" already exists
Command was: CREATE INDEX issues_issue_b098ad43 ON issues_issue USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2654; 1259 16960 INDEX issues_issue_dbb5cd1e taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_dbb5cd1e" already exists
Command was: CREATE INDEX issues_issue_dbb5cd1e ON issues_issue USING btree (milestone_id);
pg_restore: [archiver (db)] Error from TOC entry 2655; 1259 16965 INDEX issues_issue_dc91ed4b taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "issues_issue_dc91ed4b" already exists
Command was: CREATE INDEX issues_issue_dc91ed4b ON issues_issue USING btree (status_id);
pg_restore: [archiver (db)] Error from TOC entry 2737; 1259 17660 INDEX likes_like_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "likes_like_417f1b1c" already exists
Command was: CREATE INDEX likes_like_417f1b1c ON likes_like USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2740; 1259 17661 INDEX likes_like_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "likes_like_e8701ad4" already exists
Command was: CREATE INDEX likes_like_e8701ad4 ON likes_like USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2635; 1259 16880 INDEX milestones_milestone_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_2dbcba41" already exists
Command was: CREATE INDEX milestones_milestone_2dbcba41 ON milestones_milestone USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2636; 1259 16881 INDEX milestones_milestone_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_5e7b1936" already exists
Command was: CREATE INDEX milestones_milestone_5e7b1936 ON milestones_milestone USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2637; 1259 16879 INDEX milestones_milestone_b068931c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_b068931c" already exists
Command was: CREATE INDEX milestones_milestone_b068931c ON milestones_milestone USING btree (name);
pg_restore: [archiver (db)] Error from TOC entry 2638; 1259 16882 INDEX milestones_milestone_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_b098ad43" already exists
Command was: CREATE INDEX milestones_milestone_b098ad43 ON milestones_milestone USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2639; 1259 16883 INDEX milestones_milestone_name_23fb0698_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_name_23fb0698_like" already exists
Command was: CREATE INDEX milestones_milestone_name_23fb0698_like ON milestones_milestone USING btree (name varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2644; 1259 16884 INDEX milestones_milestone_slug_08e5995e_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "milestones_milestone_slug_08e5995e_like" already exists
Command was: CREATE INDEX milestones_milestone_slug_08e5995e_like ON milestones_milestone USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2688; 1259 17249 INDEX notifications_historychangenotifi_historyentry_id_ad550852_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotifi_historyentry_id_ad550852_like" already exists
Command was: CREATE INDEX notifications_historychangenotifi_historyentry_id_ad550852_like ON notifications_historychangenotification_hist...
pg_restore: [archiver (db)] Error from TOC entry 2680; 1259 17233 INDEX notifications_historychangenotification_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_5e7b1936" already exists
Command was: CREATE INDEX notifications_historychangenotification_5e7b1936 ON notifications_historychangenotification USING btree (owner_...
pg_restore: [archiver (db)] Error from TOC entry 2681; 1259 17234 INDEX notifications_historychangenotification_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_b098ad43" already exists
Command was: CREATE INDEX notifications_historychangenotification_b098ad43 ON notifications_historychangenotification USING btree (projec...
pg_restore: [archiver (db)] Error from TOC entry 2689; 1259 17248 INDEX notifications_historychangenotification_history_entries_9a6dab5 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_history_entries_9a6dab5" already exists
Command was: CREATE INDEX notifications_historychangenotification_history_entries_9a6dab5 ON notifications_historychangenotification_hist...
pg_restore: [archiver (db)] Error from TOC entry 2690; 1259 17247 INDEX notifications_historychangenotification_history_entries_b97d382 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_history_entries_b97d382" already exists
Command was: CREATE INDEX notifications_historychangenotification_history_entries_b97d382 ON notifications_historychangenotification_hist...
pg_restore: [archiver (db)] Error from TOC entry 2695; 1259 17262 INDEX notifications_historychangenotification_notify_users_b971443c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_notify_users_b971443c" already exists
Command was: CREATE INDEX notifications_historychangenotification_notify_users_b971443c ON notifications_historychangenotification_notify...
pg_restore: [archiver (db)] Error from TOC entry 2696; 1259 17263 INDEX notifications_historychangenotification_notify_users_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_historychangenotification_notify_users_e8701ad4" already exists
Command was: CREATE INDEX notifications_historychangenotification_notify_users_e8701ad4 ON notifications_historychangenotification_notify...
pg_restore: [archiver (db)] Error from TOC entry 2674; 1259 17168 INDEX notifications_notifypolicy_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_notifypolicy_b098ad43" already exists
Command was: CREATE INDEX notifications_notifypolicy_b098ad43 ON notifications_notifypolicy USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2675; 1259 17169 INDEX notifications_notifypolicy_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_notifypolicy_e8701ad4" already exists
Command was: CREATE INDEX notifications_notifypolicy_e8701ad4 ON notifications_notifypolicy USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2699; 1259 17292 INDEX notifications_watched_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_watched_417f1b1c" already exists
Command was: CREATE INDEX notifications_watched_417f1b1c ON notifications_watched USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2700; 1259 17294 INDEX notifications_watched_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_watched_b098ad43" already exists
Command was: CREATE INDEX notifications_watched_b098ad43 ON notifications_watched USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2703; 1259 17293 INDEX notifications_watched_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "notifications_watched_e8701ad4" already exists
Command was: CREATE INDEX notifications_watched_e8701ad4 ON notifications_watched USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2743; 1259 18058 INDEX projects_epicstatus_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus_2dbcba41" already exists
Command was: CREATE INDEX projects_epicstatus_2dbcba41 ON projects_epicstatus USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2744; 1259 18060 INDEX projects_epicstatus_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus_b098ad43" already exists
Command was: CREATE INDEX projects_epicstatus_b098ad43 ON projects_epicstatus USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2751; 1259 18059 INDEX projects_epicstatus_slug_63c476c8_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_epicstatus_slug_63c476c8_like" already exists
Command was: CREATE INDEX projects_epicstatus_slug_63c476c8_like ON projects_epicstatus USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2561; 1259 17463 INDEX projects_issuestatus_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus_2dbcba41" already exists
Command was: CREATE INDEX projects_issuestatus_2dbcba41 ON projects_issuestatus USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2562; 1259 16623 INDEX projects_issuestatus_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus_b098ad43" already exists
Command was: CREATE INDEX projects_issuestatus_b098ad43 ON projects_issuestatus USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2569; 1259 17464 INDEX projects_issuestatus_slug_2c528947_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuestatus_slug_2c528947_like" already exists
Command was: CREATE INDEX projects_issuestatus_slug_2c528947_like ON projects_issuestatus USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2570; 1259 16629 INDEX projects_issuetype_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_issuetype_b098ad43" already exists
Command was: CREATE INDEX projects_issuetype_b098ad43 ON projects_issuetype USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2511; 1259 17139 INDEX projects_membership_36fc3d93 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership_36fc3d93" already exists
Command was: CREATE INDEX projects_membership_36fc3d93 ON projects_membership USING btree (invited_by_id);
pg_restore: [archiver (db)] Error from TOC entry 2512; 1259 16515 INDEX projects_membership_84566833 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership_84566833" already exists
Command was: CREATE INDEX projects_membership_84566833 ON projects_membership USING btree (role_id);
pg_restore: [archiver (db)] Error from TOC entry 2513; 1259 16509 INDEX projects_membership_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership_b098ad43" already exists
Command was: CREATE INDEX projects_membership_b098ad43 ON projects_membership USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2514; 1259 16503 INDEX projects_membership_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_membership_e8701ad4" already exists
Command was: CREATE INDEX projects_membership_e8701ad4 ON projects_membership USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2575; 1259 16635 INDEX projects_points_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_points_b098ad43" already exists
Command was: CREATE INDEX projects_points_b098ad43 ON projects_points USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2580; 1259 16641 INDEX projects_priority_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_priority_b098ad43" already exists
Command was: CREATE INDEX projects_priority_b098ad43 ON projects_priority USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2519; 1259 17909 INDEX projects_project_198b9909 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_198b9909" already exists
Command was: CREATE INDEX projects_project_198b9909 ON projects_project USING btree (totals_updated_datetime);
pg_restore: [archiver (db)] Error from TOC entry 2520; 1259 17905 INDEX projects_project_2169caab taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_2169caab" already exists
Command was: CREATE INDEX projects_project_2169caab ON projects_project USING btree (total_fans);
pg_restore: [archiver (db)] Error from TOC entry 2521; 1259 16661 INDEX projects_project_31b72fd5 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_31b72fd5" already exists
Command was: CREATE INDEX projects_project_31b72fd5 ON projects_project USING btree (creation_template_id);
pg_restore: [archiver (db)] Error from TOC entry 2522; 1259 17907 INDEX projects_project_3c3a1a0c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_3c3a1a0c" already exists
Command was: CREATE INDEX projects_project_3c3a1a0c ON projects_project USING btree (total_fans_last_week);
pg_restore: [archiver (db)] Error from TOC entry 2523; 1259 16497 INDEX projects_project_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_5e7b1936" already exists
Command was: CREATE INDEX projects_project_5e7b1936 ON projects_project USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2524; 1259 17514 INDEX projects_project_6f13a5eb taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_6f13a5eb" already exists
Command was: CREATE INDEX projects_project_6f13a5eb ON projects_project USING btree (userstories_csv_uuid);
pg_restore: [archiver (db)] Error from TOC entry 2525; 1259 17903 INDEX projects_project_783b094e taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_783b094e" already exists
Command was: CREATE INDEX projects_project_783b094e ON projects_project USING btree (total_activity_last_week);
pg_restore: [archiver (db)] Error from TOC entry 2526; 1259 17901 INDEX projects_project_9280ced2 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_9280ced2" already exists
Command was: CREATE INDEX projects_project_9280ced2 ON projects_project USING btree (total_activity);
pg_restore: [archiver (db)] Error from TOC entry 2527; 1259 17904 INDEX projects_project_93c39768 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_93c39768" already exists
Command was: CREATE INDEX projects_project_93c39768 ON projects_project USING btree (total_activity_last_year);
pg_restore: [archiver (db)] Error from TOC entry 2528; 1259 17512 INDEX projects_project_9a738c7b taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_9a738c7b" already exists
Command was: CREATE INDEX projects_project_9a738c7b ON projects_project USING btree (tasks_csv_uuid);
pg_restore: [archiver (db)] Error from TOC entry 2529; 1259 18071 INDEX projects_project_a5e0db46 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_a5e0db46" already exists
Command was: CREATE INDEX projects_project_a5e0db46 ON projects_project USING btree (epics_csv_uuid);
pg_restore: [archiver (db)] Error from TOC entry 2530; 1259 17902 INDEX projects_project_b61b9aca taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_b61b9aca" already exists
Command was: CREATE INDEX projects_project_b61b9aca ON projects_project USING btree (total_activity_last_month);
pg_restore: [archiver (db)] Error from TOC entry 2531; 1259 17510 INDEX projects_project_c8cf2f55 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_c8cf2f55" already exists
Command was: CREATE INDEX projects_project_c8cf2f55 ON projects_project USING btree (issues_csv_uuid);
pg_restore: [archiver (db)] Error from TOC entry 2548; 1259 17908 INDEX projects_project_e67f9b88 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_e67f9b88" already exists
Command was: CREATE INDEX projects_project_e67f9b88 ON projects_project USING btree (total_fans_last_year);
pg_restore: [archiver (db)] Error from TOC entry 2549; 1259 18072 INDEX projects_project_epics_csv_uuid_cb50f2ee_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_epics_csv_uuid_cb50f2ee_like" already exists
Command was: CREATE INDEX projects_project_epics_csv_uuid_cb50f2ee_like ON projects_project USING btree (epics_csv_uuid varchar_pattern_o...
pg_restore: [archiver (db)] Error from TOC entry 2550; 1259 17906 INDEX projects_project_f7139a23 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_f7139a23" already exists
Command was: CREATE INDEX projects_project_f7139a23 ON projects_project USING btree (total_fans_last_month);
pg_restore: [archiver (db)] Error from TOC entry 2551; 1259 17511 INDEX projects_project_issues_csv_uuid_e6a84723_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_issues_csv_uuid_e6a84723_like" already exists
Command was: CREATE INDEX projects_project_issues_csv_uuid_e6a84723_like ON projects_project USING btree (issues_csv_uuid varchar_pattern...
pg_restore: [archiver (db)] Error from TOC entry 2552; 1259 17910 INDEX projects_project_name_44f44a5f_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_name_44f44a5f_idx" already exists
Command was: CREATE INDEX projects_project_name_44f44a5f_idx ON projects_project USING btree (name, id);
pg_restore: [archiver (db)] Error from TOC entry 2555; 1259 16496 INDEX projects_project_slug_2d50067a_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_slug_2d50067a_like" already exists
Command was: CREATE INDEX projects_project_slug_2d50067a_like ON projects_project USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2558; 1259 17513 INDEX projects_project_tasks_csv_uuid_ecd0b1b5_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_tasks_csv_uuid_ecd0b1b5_like" already exists
Command was: CREATE INDEX projects_project_tasks_csv_uuid_ecd0b1b5_like ON projects_project USING btree (tasks_csv_uuid varchar_pattern_o...
pg_restore: [archiver (db)] Error from TOC entry 2559; 1259 18833 INDEX projects_project_textquery_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_textquery_idx" already exists
Command was: CREATE INDEX projects_project_textquery_idx ON projects_project USING gin ((((setweight(to_tsvector('simple'::regconfig, (CO...
pg_restore: [archiver (db)] Error from TOC entry 2560; 1259 17515 INDEX projects_project_userstories_csv_uuid_6e83c6c1_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_project_userstories_csv_uuid_6e83c6c1_like" already exists
Command was: CREATE INDEX projects_project_userstories_csv_uuid_6e83c6c1_like ON projects_project USING btree (userstories_csv_uuid varch...
pg_restore: [archiver (db)] Error from TOC entry 2587; 1259 16642 INDEX projects_projecttemplate_slug_2731738e_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_projecttemplate_slug_2731738e_like" already exists
Command was: CREATE INDEX projects_projecttemplate_slug_2731738e_like ON projects_projecttemplate USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2590; 1259 16648 INDEX projects_severity_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_severity_b098ad43" already exists
Command was: CREATE INDEX projects_severity_b098ad43 ON projects_severity USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2595; 1259 17465 INDEX projects_taskstatus_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus_2dbcba41" already exists
Command was: CREATE INDEX projects_taskstatus_2dbcba41 ON projects_taskstatus USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2596; 1259 16654 INDEX projects_taskstatus_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus_b098ad43" already exists
Command was: CREATE INDEX projects_taskstatus_b098ad43 ON projects_taskstatus USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2603; 1259 17466 INDEX projects_taskstatus_slug_cf358ffa_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_taskstatus_slug_cf358ffa_like" already exists
Command was: CREATE INDEX projects_taskstatus_slug_cf358ffa_like ON projects_taskstatus USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2604; 1259 17467 INDEX projects_userstorystatus_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus_2dbcba41" already exists
Command was: CREATE INDEX projects_userstorystatus_2dbcba41 ON projects_userstorystatus USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2605; 1259 16660 INDEX projects_userstorystatus_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus_b098ad43" already exists
Command was: CREATE INDEX projects_userstorystatus_b098ad43 ON projects_userstorystatus USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2612; 1259 17468 INDEX projects_userstorystatus_slug_d574ed51_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "projects_userstorystatus_slug_d574ed51_like" already exists
Command was: CREATE INDEX projects_userstorystatus_slug_d574ed51_like ON projects_userstorystatus USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2867; 1259 18895 INDEX references_reference_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "references_reference_417f1b1c" already exists
Command was: CREATE INDEX references_reference_417f1b1c ON references_reference USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2868; 1259 18896 INDEX references_reference_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "references_reference_b098ad43" already exists
Command was: CREATE INDEX references_reference_b098ad43 ON references_reference USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2706; 1259 17345 INDEX tasks_task_02c1725c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_02c1725c" already exists
Command was: CREATE INDEX tasks_task_02c1725c ON tasks_task USING btree (assigned_to_id);
pg_restore: [archiver (db)] Error from TOC entry 2707; 1259 17344 INDEX tasks_task_18389a4a taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_18389a4a" already exists
Command was: CREATE INDEX tasks_task_18389a4a ON tasks_task USING btree (ref);
pg_restore: [archiver (db)] Error from TOC entry 2708; 1259 17347 INDEX tasks_task_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_5e7b1936" already exists
Command was: CREATE INDEX tasks_task_5e7b1936 ON tasks_task USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2709; 1259 17350 INDEX tasks_task_8fde7968 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_8fde7968" already exists
Command was: CREATE INDEX tasks_task_8fde7968 ON tasks_task USING btree (user_story_id);
pg_restore: [archiver (db)] Error from TOC entry 2710; 1259 17348 INDEX tasks_task_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_b098ad43" already exists
Command was: CREATE INDEX tasks_task_b098ad43 ON tasks_task USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2711; 1259 17346 INDEX tasks_task_dbb5cd1e taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_dbb5cd1e" already exists
Command was: CREATE INDEX tasks_task_dbb5cd1e ON tasks_task USING btree (milestone_id);
pg_restore: [archiver (db)] Error from TOC entry 2712; 1259 17349 INDEX tasks_task_dc91ed4b taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "tasks_task_dc91ed4b" already exists
Command was: CREATE INDEX tasks_task_dc91ed4b ON tasks_task USING btree (status_id);
pg_restore: [archiver (db)] Error from TOC entry 2726; 1259 17552 INDEX timeline_timeline_1cd03614 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_1cd03614" already exists
Command was: CREATE INDEX timeline_timeline_1cd03614 ON timeline_timeline USING btree (event_type);
pg_restore: [archiver (db)] Error from TOC entry 2727; 1259 17548 INDEX timeline_timeline_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_417f1b1c" already exists
Command was: CREATE INDEX timeline_timeline_417f1b1c ON timeline_timeline USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2728; 1259 17554 INDEX timeline_timeline_89801e9e taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_89801e9e" already exists
Command was: CREATE INDEX timeline_timeline_89801e9e ON timeline_timeline USING btree (namespace);
pg_restore: [archiver (db)] Error from TOC entry 2729; 1259 17546 INDEX timeline_timeline_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_b098ad43" already exists
Command was: CREATE INDEX timeline_timeline_b098ad43 ON timeline_timeline USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2730; 1259 17547 INDEX timeline_timeline_b8fe7dd0 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_b8fe7dd0" already exists
Command was: CREATE INDEX timeline_timeline_b8fe7dd0 ON timeline_timeline USING btree (data_content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2731; 1259 17555 INDEX timeline_timeline_content_type_id_e4a5d400_idx taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_content_type_id_e4a5d400_idx" already exists
Command was: CREATE INDEX timeline_timeline_content_type_id_e4a5d400_idx ON timeline_timeline USING btree (content_type_id, object_id, na...
pg_restore: [archiver (db)] Error from TOC entry 2732; 1259 18938 INDEX timeline_timeline_created_4e9e3a68_uniq taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_created_4e9e3a68_uniq" already exists
Command was: CREATE INDEX timeline_timeline_created_4e9e3a68_uniq ON timeline_timeline USING btree (created);
pg_restore: [archiver (db)] Error from TOC entry 2733; 1259 17551 INDEX timeline_timeline_event_type_cb2fcdb2_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_event_type_cb2fcdb2_like" already exists
Command was: CREATE INDEX timeline_timeline_event_type_cb2fcdb2_like ON timeline_timeline USING btree (event_type varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2734; 1259 17553 INDEX timeline_timeline_namespace_26f217ed_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "timeline_timeline_namespace_26f217ed_like" already exists
Command was: CREATE INDEX timeline_timeline_namespace_26f217ed_like ON timeline_timeline USING btree (namespace varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2715; 1259 17423 INDEX users_authdata_3c6e0b8a taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_authdata_3c6e0b8a" already exists
Command was: CREATE INDEX users_authdata_3c6e0b8a ON users_authdata USING btree (key);
pg_restore: [archiver (db)] Error from TOC entry 2716; 1259 17424 INDEX users_authdata_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_authdata_e8701ad4" already exists
Command was: CREATE INDEX users_authdata_e8701ad4 ON users_authdata USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2719; 1259 17425 INDEX users_authdata_key_c3b89eef_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_authdata_key_c3b89eef_like" already exists
Command was: CREATE INDEX users_authdata_key_c3b89eef_like ON users_authdata USING btree (key varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2504; 1259 16457 INDEX users_role_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_role_2dbcba41" already exists
Command was: CREATE INDEX users_role_2dbcba41 ON users_role USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2505; 1259 16823 INDEX users_role_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_role_b098ad43" already exists
Command was: CREATE INDEX users_role_b098ad43 ON users_role USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2508; 1259 16458 INDEX users_role_slug_ce33b471_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_role_slug_ce33b471_like" already exists
Command was: CREATE INDEX users_role_slug_ce33b471_like ON users_role USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2492; 1259 16831 INDEX users_user_email_243f6e77_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_user_email_243f6e77_like" already exists
Command was: CREATE INDEX users_user_email_243f6e77_like ON users_user USING btree (email varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2497; 1259 16834 INDEX users_user_username_06e46fe6_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "users_user_username_06e46fe6_like" already exists
Command was: CREATE INDEX users_user_username_06e46fe6_like ON users_user USING btree (username varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2877; 1259 18984 INDEX userstorage_storageentry_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstorage_storageentry_5e7b1936" already exists
Command was: CREATE INDEX userstorage_storageentry_5e7b1936 ON userstorage_storageentry USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2658; 1259 17022 INDEX userstories_rolepoints_84566833 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_rolepoints_84566833" already exists
Command was: CREATE INDEX userstories_rolepoints_84566833 ON userstories_rolepoints USING btree (role_id);
pg_restore: [archiver (db)] Error from TOC entry 2659; 1259 17074 INDEX userstories_rolepoints_8fde7968 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_rolepoints_8fde7968" already exists
Command was: CREATE INDEX userstories_rolepoints_8fde7968 ON userstories_rolepoints USING btree (user_story_id);
pg_restore: [archiver (db)] Error from TOC entry 2660; 1259 17021 INDEX userstories_rolepoints_f5ba12d4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_rolepoints_f5ba12d4" already exists
Command was: CREATE INDEX userstories_rolepoints_f5ba12d4 ON userstories_rolepoints USING btree (points_id);
pg_restore: [archiver (db)] Error from TOC entry 2665; 1259 17054 INDEX userstories_userstory_02c1725c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_02c1725c" already exists
Command was: CREATE INDEX userstories_userstory_02c1725c ON userstories_userstory USING btree (assigned_to_id);
pg_restore: [archiver (db)] Error from TOC entry 2666; 1259 17053 INDEX userstories_userstory_18389a4a taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_18389a4a" already exists
Command was: CREATE INDEX userstories_userstory_18389a4a ON userstories_userstory USING btree (ref);
pg_restore: [archiver (db)] Error from TOC entry 2667; 1259 17057 INDEX userstories_userstory_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_5e7b1936" already exists
Command was: CREATE INDEX userstories_userstory_5e7b1936 ON userstories_userstory USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2668; 1259 17058 INDEX userstories_userstory_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_b098ad43" already exists
Command was: CREATE INDEX userstories_userstory_b098ad43 ON userstories_userstory USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2669; 1259 17056 INDEX userstories_userstory_dbb5cd1e taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_dbb5cd1e" already exists
Command was: CREATE INDEX userstories_userstory_dbb5cd1e ON userstories_userstory USING btree (milestone_id);
pg_restore: [archiver (db)] Error from TOC entry 2670; 1259 17059 INDEX userstories_userstory_dc91ed4b taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_dc91ed4b" already exists
Command was: CREATE INDEX userstories_userstory_dc91ed4b ON userstories_userstory USING btree (status_id);
pg_restore: [archiver (db)] Error from TOC entry 2671; 1259 17055 INDEX userstories_userstory_ee099208 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "userstories_userstory_ee099208" already exists
Command was: CREATE INDEX userstories_userstory_ee099208 ON userstories_userstory USING btree (generated_from_issue_id);
pg_restore: [archiver (db)] Error from TOC entry 2882; 1259 19072 INDEX votes_vote_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_vote_417f1b1c" already exists
Command was: CREATE INDEX votes_vote_417f1b1c ON votes_vote USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2885; 1259 19073 INDEX votes_vote_e8701ad4 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_vote_e8701ad4" already exists
Command was: CREATE INDEX votes_vote_e8701ad4 ON votes_vote USING btree (user_id);
pg_restore: [archiver (db)] Error from TOC entry 2888; 1259 19079 INDEX votes_votes_417f1b1c taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "votes_votes_417f1b1c" already exists
Command was: CREATE INDEX votes_votes_417f1b1c ON votes_votes USING btree (content_type_id);
pg_restore: [archiver (db)] Error from TOC entry 2893; 1259 19120 INDEX webhooks_webhook_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "webhooks_webhook_b098ad43" already exists
Command was: CREATE INDEX webhooks_webhook_b098ad43 ON webhooks_webhook USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2896; 1259 19126 INDEX webhooks_webhooklog_75973a93 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "webhooks_webhooklog_75973a93" already exists
Command was: CREATE INDEX webhooks_webhooklog_75973a93 ON webhooks_webhooklog USING btree (webhook_id);
pg_restore: [archiver (db)] Error from TOC entry 2756; 1259 18231 INDEX wiki_wikilink_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikilink_b098ad43" already exists
Command was: CREATE INDEX wiki_wikilink_b098ad43 ON wiki_wikilink USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2757; 1259 18230 INDEX wiki_wikilink_e8fab833 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikilink_e8fab833" already exists
Command was: CREATE INDEX wiki_wikilink_e8fab833 ON wiki_wikilink USING btree (href);
pg_restore: [archiver (db)] Error from TOC entry 2758; 1259 18232 INDEX wiki_wikilink_href_46ee8855_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikilink_href_46ee8855_like" already exists
Command was: CREATE INDEX wiki_wikilink_href_46ee8855_like ON wiki_wikilink USING btree (href varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 2763; 1259 18248 INDEX wiki_wikipage_2dbcba41 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_2dbcba41" already exists
Command was: CREATE INDEX wiki_wikipage_2dbcba41 ON wiki_wikipage USING btree (slug);
pg_restore: [archiver (db)] Error from TOC entry 2764; 1259 18250 INDEX wiki_wikipage_5e7b1936 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_5e7b1936" already exists
Command was: CREATE INDEX wiki_wikipage_5e7b1936 ON wiki_wikipage USING btree (owner_id);
pg_restore: [archiver (db)] Error from TOC entry 2765; 1259 18251 INDEX wiki_wikipage_b098ad43 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_b098ad43" already exists
Command was: CREATE INDEX wiki_wikipage_b098ad43 ON wiki_wikipage USING btree (project_id);
pg_restore: [archiver (db)] Error from TOC entry 2766; 1259 18249 INDEX wiki_wikipage_e04adc59 taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_e04adc59" already exists
Command was: CREATE INDEX wiki_wikipage_e04adc59 ON wiki_wikipage USING btree (last_modifier_id);
pg_restore: [archiver (db)] Error from TOC entry 2771; 1259 18252 INDEX wiki_wikipage_slug_10d80dc1_like taiga
pg_restore: [archiver (db)] could not execute query: ERROR: relation "wiki_wikipage_slug_10d80dc1_like" already exists
Command was: CREATE INDEX wiki_wikipage_slug_10d80dc1_like ON wiki_wikipage USING btree (slug varchar_pattern_ops);
pg_restore: [archiver (db)] Error from TOC entry 3017; 2620 18584 TRIGGER update_epiccustomvalues_after_remove_epiccustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_epiccustomvalues_after_remove_epiccustomattribute" for relation "custom_attributes_epiccustomattribute" already exists
Command was: CREATE TRIGGER update_epiccustomvalues_after_remove_epiccustomattribute AFTER DELETE ON custom_attributes_epiccustomattribut...
pg_restore: [archiver (db)] Error from TOC entry 3014; 2620 18553 TRIGGER update_issuecustomvalues_after_remove_issuecustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_issuecustomvalues_after_remove_issuecustomattribute" for relation "custom_attributes_issuecustomattribute" already exists
Command was: CREATE TRIGGER update_issuecustomvalues_after_remove_issuecustomattribute AFTER DELETE ON custom_attributes_issuecustomattri...
pg_restore: [archiver (db)] Error from TOC entry 3013; 2620 18351 TRIGGER update_project_tags_colors_on_epic_insert taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_epic_insert" for relation "epics_epic" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_epic_insert AFTER INSERT ON epics_epic FOR EACH ROW EXECUTE PROCEDURE update_pr...
pg_restore: [archiver (db)] Error from TOC entry 3012; 2620 18350 TRIGGER update_project_tags_colors_on_epic_update taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_epic_update" for relation "epics_epic" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_epic_update AFTER UPDATE ON epics_epic FOR EACH ROW EXECUTE PROCEDURE update_pr...
pg_restore: [archiver (db)] Error from TOC entry 3007; 2620 17984 TRIGGER update_project_tags_colors_on_issue_insert taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_issue_insert" for relation "issues_issue" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_issue_insert AFTER INSERT ON issues_issue FOR EACH ROW EXECUTE PROCEDURE update...
pg_restore: [archiver (db)] Error from TOC entry 3006; 2620 17983 TRIGGER update_project_tags_colors_on_issue_update taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_issue_update" for relation "issues_issue" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_issue_update AFTER UPDATE ON issues_issue FOR EACH ROW EXECUTE PROCEDURE update...
pg_restore: [archiver (db)] Error from TOC entry 3011; 2620 17982 TRIGGER update_project_tags_colors_on_task_insert taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_task_insert" for relation "tasks_task" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_task_insert AFTER INSERT ON tasks_task FOR EACH ROW EXECUTE PROCEDURE update_pr...
pg_restore: [archiver (db)] Error from TOC entry 3010; 2620 17981 TRIGGER update_project_tags_colors_on_task_update taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_task_update" for relation "tasks_task" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_task_update AFTER UPDATE ON tasks_task FOR EACH ROW EXECUTE PROCEDURE update_pr...
pg_restore: [archiver (db)] Error from TOC entry 3009; 2620 17980 TRIGGER update_project_tags_colors_on_userstory_insert taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_userstory_insert" for relation "userstories_userstory" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_userstory_insert AFTER INSERT ON userstories_userstory FOR EACH ROW EXECUTE PRO...
pg_restore: [archiver (db)] Error from TOC entry 3008; 2620 17979 TRIGGER update_project_tags_colors_on_userstory_update taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_project_tags_colors_on_userstory_update" for relation "userstories_userstory" already exists
Command was: CREATE TRIGGER update_project_tags_colors_on_userstory_update AFTER UPDATE ON userstories_userstory FOR EACH ROW EXECUTE PRO...
pg_restore: [archiver (db)] Error from TOC entry 3015; 2620 18552 TRIGGER update_taskcustomvalues_after_remove_taskcustomattribute taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_taskcustomvalues_after_remove_taskcustomattribute" for relation "custom_attributes_taskcustomattribute" already exists
Command was: CREATE TRIGGER update_taskcustomvalues_after_remove_taskcustomattribute AFTER DELETE ON custom_attributes_taskcustomattribut...
pg_restore: [archiver (db)] Error from TOC entry 3016; 2620 18551 TRIGGER update_userstorycustomvalues_after_remove_userstorycustomattrib taiga
pg_restore: [archiver (db)] could not execute query: ERROR: trigger "update_userstorycustomvalues_after_remove_userstorycustomattrib" for relation "custom_attributes_userstorycustomattribute" already exists
Command was: CREATE TRIGGER update_userstorycustomvalues_after_remove_userstorycustomattrib AFTER DELETE ON custom_attributes_userstorycu...
pg_restore: [archiver (db)] Error from TOC entry 2952; 2606 18818 FK CONSTRAINT D0a8d4a05fad00e48a98e88921cffefe taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "D0a8d4a05fad00e48a98e88921cffefe" for relation "notifications_historychangenotification_history_entries" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification_history_entries
ADD CONSTRAINT "D0a8d4a05fad00e48a98e88921cffef...
pg_restore: [archiver (db)] Error from TOC entry 2954; 2606 18828 FK CONSTRAINT D8f144fbc61186555bb17f84958e169a taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "D8f144fbc61186555bb17f84958e169a" for relation "notifications_historychangenotification_notify_users" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification_notify_users
ADD CONSTRAINT "D8f144fbc61186555bb17f84958e169a" ...
pg_restore: [archiver (db)] Error from TOC entry 2925; 2606 16714 FK CONSTRAINT attachments__content_type_id_35dd9d5d_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "attachments__content_type_id_35dd9d5d_fk_django_content_type_id" for relation "attachments_attachment" already exists
Command was: ALTER TABLE ONLY attachments_attachment
ADD CONSTRAINT attachments__content_type_id_35dd9d5d_fk_django_content_type_id F...
pg_restore: [archiver (db)] Error from TOC entry 2924; 2606 16724 FK CONSTRAINT attachments_attachme_project_id_50714f52_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "attachments_attachme_project_id_50714f52_fk_projects_project_id" for relation "attachments_attachment" already exists
Command was: ALTER TABLE ONLY attachments_attachment
ADD CONSTRAINT attachments_attachme_project_id_50714f52_fk_projects_project_id F...
pg_restore: [archiver (db)] Error from TOC entry 2923; 2606 16743 FK CONSTRAINT attachments_attachment_owner_id_720defb8_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "attachments_attachment_owner_id_720defb8_fk_users_user_id" for relation "attachments_attachment" already exists
Command was: ALTER TABLE ONLY attachments_attachment
ADD CONSTRAINT attachments_attachment_owner_id_720defb8_fk_users_user_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2927; 2606 16812 FK CONSTRAINT auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id" for relation "auth_group_permissions" already exists
Command was: ALTER TABLE ONLY auth_group_permissions
ADD CONSTRAINT auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id F...
pg_restore: [archiver (db)] Error from TOC entry 2928; 2606 16807 FK CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "auth_group_permissions_group_id_b120cbf9_fk_auth_group_id" for relation "auth_group_permissions" already exists
Command was: ALTER TABLE ONLY auth_group_permissions
ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2926; 2606 16798 FK CONSTRAINT auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id" for relation "auth_permission" already exists
Command was: ALTER TABLE ONLY auth_permission
ADD CONSTRAINT auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id FOREIGN ...
pg_restore: [archiver (db)] Error from TOC entry 2974; 2606 18178 FK CONSTRAINT contact_contactentry_project_id_27bfec4e_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "contact_contactentry_project_id_27bfec4e_fk_projects_project_id" for relation "contact_contactentry" already exists
Command was: ALTER TABLE ONLY contact_contactentry
ADD CONSTRAINT contact_contactentry_project_id_27bfec4e_fk_projects_project_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2973; 2606 18183 FK CONSTRAINT contact_contactentry_user_id_f1f19c5f_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "contact_contactentry_user_id_f1f19c5f_fk_users_user_id" for relation "contact_contactentry" already exists
Command was: ALTER TABLE ONLY contact_contactentry
ADD CONSTRAINT contact_contactentry_user_id_f1f19c5f_fk_users_user_id FOREIGN KEY ...
pg_restore: [archiver (db)] Error from TOC entry 2991; 2606 18508 FK CONSTRAINT custom_attri_user_story_id_99b10c43_fk_userstories_userstory_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attri_user_story_id_99b10c43_fk_userstories_userstory_id" for relation "custom_attributes_userstorycustomattributesvalues" already exists
Command was: ALTER TABLE ONLY custom_attributes_userstorycustomattributesvalues
ADD CONSTRAINT custom_attri_user_story_id_99b10c43_fk...
pg_restore: [archiver (db)] Error from TOC entry 2992; 2606 18585 FK CONSTRAINT custom_attributes_ep_project_id_ad2cfaa8_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_ep_project_id_ad2cfaa8_fk_projects_project_id" for relation "custom_attributes_epiccustomattribute" already exists
Command was: ALTER TABLE ONLY custom_attributes_epiccustomattribute
ADD CONSTRAINT custom_attributes_ep_project_id_ad2cfaa8_fk_projec...
pg_restore: [archiver (db)] Error from TOC entry 2993; 2606 18591 FK CONSTRAINT custom_attributes_epiccustoma_epic_id_d413e57a_fk_epics_epic_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_epiccustoma_epic_id_d413e57a_fk_epics_epic_id" for relation "custom_attributes_epiccustomattributesvalues" already exists
Command was: ALTER TABLE ONLY custom_attributes_epiccustomattributesvalues
ADD CONSTRAINT custom_attributes_epiccustoma_epic_id_d413e...
pg_restore: [archiver (db)] Error from TOC entry 2986; 2606 18441 FK CONSTRAINT custom_attributes_is_project_id_3b4acff5_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_is_project_id_3b4acff5_fk_projects_project_id" for relation "custom_attributes_issuecustomattribute" already exists
Command was: ALTER TABLE ONLY custom_attributes_issuecustomattribute
ADD CONSTRAINT custom_attributes_is_project_id_3b4acff5_fk_proje...
pg_restore: [archiver (db)] Error from TOC entry 2989; 2606 18498 FK CONSTRAINT custom_attributes_issuecus_issue_id_868161f8_fk_issues_issue_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_issuecus_issue_id_868161f8_fk_issues_issue_id" for relation "custom_attributes_issuecustomattributesvalues" already exists
Command was: ALTER TABLE ONLY custom_attributes_issuecustomattributesvalues
ADD CONSTRAINT custom_attributes_issuecus_issue_id_868161...
pg_restore: [archiver (db)] Error from TOC entry 2987; 2606 18447 FK CONSTRAINT custom_attributes_ta_project_id_f0f622a8_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_ta_project_id_f0f622a8_fk_projects_project_id" for relation "custom_attributes_taskcustomattribute" already exists
Command was: ALTER TABLE ONLY custom_attributes_taskcustomattribute
ADD CONSTRAINT custom_attributes_ta_project_id_f0f622a8_fk_projec...
pg_restore: [archiver (db)] Error from TOC entry 2990; 2606 18503 FK CONSTRAINT custom_attributes_taskcustoma_task_id_3d1ccf5e_fk_tasks_task_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_taskcustoma_task_id_3d1ccf5e_fk_tasks_task_id" for relation "custom_attributes_taskcustomattributesvalues" already exists
Command was: ALTER TABLE ONLY custom_attributes_taskcustomattributesvalues
ADD CONSTRAINT custom_attributes_taskcustoma_task_id_3d1cc...
pg_restore: [archiver (db)] Error from TOC entry 2988; 2606 18453 FK CONSTRAINT custom_attributes_us_project_id_2619cf6c_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "custom_attributes_us_project_id_2619cf6c_fk_projects_project_id" for relation "custom_attributes_userstorycustomattribute" already exists
Command was: ALTER TABLE ONLY custom_attributes_userstorycustomattribute
ADD CONSTRAINT custom_attributes_us_project_id_2619cf6c_fk_p...
pg_restore: [archiver (db)] Error from TOC entry 2900; 2606 16433 FK CONSTRAINT django_admin_content_type_id_c4bce8eb_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "django_admin_content_type_id_c4bce8eb_fk_django_content_type_id" for relation "django_admin_log" already exists
Command was: ALTER TABLE ONLY django_admin_log
ADD CONSTRAINT django_admin_content_type_id_c4bce8eb_fk_django_content_type_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2899; 2606 16438 FK CONSTRAINT django_admin_log_user_id_c564eba6_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "django_admin_log_user_id_c564eba6_fk_users_user_id" for relation "django_admin_log" already exists
Command was: ALTER TABLE ONLY django_admin_log
ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_users_user_id FOREIGN KEY (user_id...
pg_restore: [archiver (db)] Error from TOC entry 2995; 2606 18728 FK CONSTRAINT easy_thum_thumbnail_id_c3a0c549_fk_easy_thumbnails_thumbnail_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "easy_thum_thumbnail_id_c3a0c549_fk_easy_thumbnails_thumbnail_id" for relation "easy_thumbnails_thumbnaildimensions" already exists
Command was: ALTER TABLE ONLY easy_thumbnails_thumbnaildimensions
ADD CONSTRAINT easy_thum_thumbnail_id_c3a0c549_fk_easy_thumbnails_t...
pg_restore: [archiver (db)] Error from TOC entry 2994; 2606 18706 FK CONSTRAINT easy_thumbnails_source_id_5b57bc77_fk_easy_thumbnails_source_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "easy_thumbnails_source_id_5b57bc77_fk_easy_thumbnails_source_id" for relation "easy_thumbnails_thumbnail" already exists
Command was: ALTER TABLE ONLY easy_thumbnails_thumbnail
ADD CONSTRAINT easy_thumbnails_source_id_5b57bc77_fk_easy_thumbnails_source_i...
pg_restore: [archiver (db)] Error from TOC entry 2983; 2606 18352 FK CONSTRAINT epics_epic_assigned_to_id_13e08004_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "epics_epic_assigned_to_id_13e08004_fk_users_user_id" for relation "epics_epic" already exists
Command was: ALTER TABLE ONLY epics_epic
ADD CONSTRAINT epics_epic_assigned_to_id_13e08004_fk_users_user_id FOREIGN KEY (assigned_to_...
pg_restore: [archiver (db)] Error from TOC entry 2982; 2606 18357 FK CONSTRAINT epics_epic_owner_id_b09888c4_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "epics_epic_owner_id_b09888c4_fk_users_user_id" for relation "epics_epic" already exists
Command was: ALTER TABLE ONLY epics_epic
ADD CONSTRAINT epics_epic_owner_id_b09888c4_fk_users_user_id FOREIGN KEY (owner_id) REFERENC...
pg_restore: [archiver (db)] Error from TOC entry 2981; 2606 18362 FK CONSTRAINT epics_epic_project_id_d98aaef7_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "epics_epic_project_id_d98aaef7_fk_projects_project_id" for relation "epics_epic" already exists
Command was: ALTER TABLE ONLY epics_epic
ADD CONSTRAINT epics_epic_project_id_d98aaef7_fk_projects_project_id FOREIGN KEY (project_id...
pg_restore: [archiver (db)] Error from TOC entry 2980; 2606 18367 FK CONSTRAINT epics_epic_status_id_4cf3af1a_fk_projects_epicstatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "epics_epic_status_id_4cf3af1a_fk_projects_epicstatus_id" for relation "epics_epic" already exists
Command was: ALTER TABLE ONLY epics_epic
ADD CONSTRAINT epics_epic_status_id_4cf3af1a_fk_projects_epicstatus_id FOREIGN KEY (status_i...
pg_restore: [archiver (db)] Error from TOC entry 2984; 2606 18382 FK CONSTRAINT epics_relate_user_story_id_329a951c_fk_userstories_userstory_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "epics_relate_user_story_id_329a951c_fk_userstories_userstory_id" for relation "epics_relateduserstory" already exists
Command was: ALTER TABLE ONLY epics_relateduserstory
ADD CONSTRAINT epics_relate_user_story_id_329a951c_fk_userstories_userstory_id F...
pg_restore: [archiver (db)] Error from TOC entry 2985; 2606 18377 FK CONSTRAINT epics_relateduserstory_epic_id_57605230_fk_epics_epic_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "epics_relateduserstory_epic_id_57605230_fk_epics_epic_id" for relation "epics_relateduserstory" already exists
Command was: ALTER TABLE ONLY epics_relateduserstory
ADD CONSTRAINT epics_relateduserstory_epic_id_57605230_fk_epics_epic_id FOREIGN ...
pg_restore: [archiver (db)] Error from TOC entry 2997; 2606 18778 FK CONSTRAINT externa_application_id_0e934655_fk_external_apps_application_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "externa_application_id_0e934655_fk_external_apps_application_id" for relation "external_apps_applicationtoken" already exists
Command was: ALTER TABLE ONLY external_apps_applicationtoken
ADD CONSTRAINT externa_application_id_0e934655_fk_external_apps_applicat...
pg_restore: [archiver (db)] Error from TOC entry 2996; 2606 18783 FK CONSTRAINT external_apps_applicationtoke_user_id_6e2f1e8a_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "external_apps_applicationtoke_user_id_6e2f1e8a_fk_users_user_id" for relation "external_apps_applicationtoken" already exists
Command was: ALTER TABLE ONLY external_apps_applicationtoken
ADD CONSTRAINT external_apps_applicationtoke_user_id_6e2f1e8a_fk_users_u...
pg_restore: [archiver (db)] Error from TOC entry 2979; 2606 18326 FK CONSTRAINT history_historyentry_project_id_9b008f70_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "history_historyentry_project_id_9b008f70_fk_projects_project_id" for relation "history_historyentry" already exists
Command was: ALTER TABLE ONLY history_historyentry
ADD CONSTRAINT history_historyentry_project_id_9b008f70_fk_projects_project_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2938; 2606 16918 FK CONSTRAINT issues_issue_assigned_to_id_c6054289_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_assigned_to_id_c6054289_fk_users_user_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_assigned_to_id_c6054289_fk_users_user_id FOREIGN KEY (assigned...
pg_restore: [archiver (db)] Error from TOC entry 2937; 2606 16923 FK CONSTRAINT issues_issue_milestone_id_3c2695ee_fk_milestones_milestone_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_milestone_id_3c2695ee_fk_milestones_milestone_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_milestone_id_3c2695ee_fk_milestones_milestone_id FOREIGN KEY (...
pg_restore: [archiver (db)] Error from TOC entry 2936; 2606 16928 FK CONSTRAINT issues_issue_owner_id_5c361b47_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_owner_id_5c361b47_fk_users_user_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_owner_id_5c361b47_fk_users_user_id FOREIGN KEY (owner_id) REFE...
pg_restore: [archiver (db)] Error from TOC entry 2934; 2606 17955 FK CONSTRAINT issues_issue_priority_id_93842a93_fk_projects_priority_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_priority_id_93842a93_fk_projects_priority_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_priority_id_93842a93_fk_projects_priority_id FOREIGN KEY (prio...
pg_restore: [archiver (db)] Error from TOC entry 2935; 2606 16938 FK CONSTRAINT issues_issue_project_id_4b0f3e2f_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_project_id_4b0f3e2f_fk_projects_project_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_project_id_4b0f3e2f_fk_projects_project_id FOREIGN KEY (projec...
pg_restore: [archiver (db)] Error from TOC entry 2933; 2606 17960 FK CONSTRAINT issues_issue_severity_id_695dade0_fk_projects_severity_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_severity_id_695dade0_fk_projects_severity_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_severity_id_695dade0_fk_projects_severity_id FOREIGN KEY (seve...
pg_restore: [archiver (db)] Error from TOC entry 2932; 2606 17965 FK CONSTRAINT issues_issue_status_id_64473cf1_fk_projects_issuestatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_status_id_64473cf1_fk_projects_issuestatus_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_status_id_64473cf1_fk_projects_issuestatus_id FOREIGN KEY (sta...
pg_restore: [archiver (db)] Error from TOC entry 2931; 2606 17970 FK CONSTRAINT issues_issue_type_id_c1063362_fk_projects_issuetype_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "issues_issue_type_id_c1063362_fk_projects_issuetype_id" for relation "issues_issue" already exists
Command was: ALTER TABLE ONLY issues_issue
ADD CONSTRAINT issues_issue_type_id_c1063362_fk_projects_issuetype_id FOREIGN KEY (type_id...
pg_restore: [archiver (db)] Error from TOC entry 2971; 2606 17650 FK CONSTRAINT likes_like_content_type_id_8ffc2116_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "likes_like_content_type_id_8ffc2116_fk_django_content_type_id" for relation "likes_like" already exists
Command was: ALTER TABLE ONLY likes_like
ADD CONSTRAINT likes_like_content_type_id_8ffc2116_fk_django_content_type_id FOREIGN KEY (co...
pg_restore: [archiver (db)] Error from TOC entry 2970; 2606 17655 FK CONSTRAINT likes_like_user_id_aae4c421_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "likes_like_user_id_aae4c421_fk_users_user_id" for relation "likes_like" already exists
Command was: ALTER TABLE ONLY likes_like
ADD CONSTRAINT likes_like_user_id_aae4c421_fk_users_user_id FOREIGN KEY (user_id) REFERENCES...
pg_restore: [archiver (db)] Error from TOC entry 2930; 2606 16869 FK CONSTRAINT milestones_milestone_owner_id_216ba23b_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "milestones_milestone_owner_id_216ba23b_fk_users_user_id" for relation "milestones_milestone" already exists
Command was: ALTER TABLE ONLY milestones_milestone
ADD CONSTRAINT milestones_milestone_owner_id_216ba23b_fk_users_user_id FOREIGN KEY...
pg_restore: [archiver (db)] Error from TOC entry 2929; 2606 16874 FK CONSTRAINT milestones_milestone_project_id_6151cb75_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "milestones_milestone_project_id_6151cb75_fk_projects_project_id" for relation "milestones_milestone" already exists
Command was: ALTER TABLE ONLY milestones_milestone
ADD CONSTRAINT milestones_milestone_project_id_6151cb75_fk_projects_project_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2953; 2606 18813 FK CONSTRAINT notificatio_historyentry_id_ad550852_fk_history_historyentry_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notificatio_historyentry_id_ad550852_fk_history_historyentry_id" for relation "notifications_historychangenotification_history_entries" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification_history_entries
ADD CONSTRAINT notificatio_historyentry_id_ad55...
pg_restore: [archiver (db)] Error from TOC entry 2958; 2606 17277 FK CONSTRAINT notification_content_type_id_7b3ab729_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notification_content_type_id_7b3ab729_fk_django_content_type_id" for relation "notifications_watched" already exists
Command was: ALTER TABLE ONLY notifications_watched
ADD CONSTRAINT notification_content_type_id_7b3ab729_fk_django_content_type_id FO...
pg_restore: [archiver (db)] Error from TOC entry 2950; 2606 17228 FK CONSTRAINT notifications_histor_project_id_52cf5e2b_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_histor_project_id_52cf5e2b_fk_projects_project_id" for relation "notifications_historychangenotification" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification
ADD CONSTRAINT notifications_histor_project_id_52cf5e2b_fk_proj...
pg_restore: [archiver (db)] Error from TOC entry 2951; 2606 17223 FK CONSTRAINT notifications_historychangen_owner_id_6f63be8a_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_historychangen_owner_id_6f63be8a_fk_users_user_id" for relation "notifications_historychangenotification" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification
ADD CONSTRAINT notifications_historychangen_owner_id_6f63be8a_f...
pg_restore: [archiver (db)] Error from TOC entry 2955; 2606 18823 FK CONSTRAINT notifications_historychangeno_user_id_f7bd2448_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_historychangeno_user_id_f7bd2448_fk_users_user_id" for relation "notifications_historychangenotification_notify_users" already exists
Command was: ALTER TABLE ONLY notifications_historychangenotification_notify_users
ADD CONSTRAINT notifications_historychangeno_user_...
pg_restore: [archiver (db)] Error from TOC entry 2949; 2606 17158 FK CONSTRAINT notifications_notify_project_id_aa5da43f_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_notify_project_id_aa5da43f_fk_projects_project_id" for relation "notifications_notifypolicy" already exists
Command was: ALTER TABLE ONLY notifications_notifypolicy
ADD CONSTRAINT notifications_notify_project_id_aa5da43f_fk_projects_project_...
pg_restore: [archiver (db)] Error from TOC entry 2948; 2606 17163 FK CONSTRAINT notifications_notifypolicy_user_id_2902cbeb_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_notifypolicy_user_id_2902cbeb_fk_users_user_id" for relation "notifications_notifypolicy" already exists
Command was: ALTER TABLE ONLY notifications_notifypolicy
ADD CONSTRAINT notifications_notifypolicy_user_id_2902cbeb_fk_users_user_id ...
pg_restore: [archiver (db)] Error from TOC entry 2956; 2606 17287 FK CONSTRAINT notifications_watche_project_id_c88baa46_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_watche_project_id_c88baa46_fk_projects_project_id" for relation "notifications_watched" already exists
Command was: ALTER TABLE ONLY notifications_watched
ADD CONSTRAINT notifications_watche_project_id_c88baa46_fk_projects_project_id FO...
pg_restore: [archiver (db)] Error from TOC entry 2957; 2606 17282 FK CONSTRAINT notifications_watched_user_id_1bce1955_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "notifications_watched_user_id_1bce1955_fk_users_user_id" for relation "notifications_watched" already exists
Command was: ALTER TABLE ONLY notifications_watched
ADD CONSTRAINT notifications_watched_user_id_1bce1955_fk_users_user_id FOREIGN KE...
pg_restore: [archiver (db)] Error from TOC entry 2914; 2606 18073 FK CONSTRAINT pr_creation_template_id_b5a97819_fk_projects_projecttemplate_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "pr_creation_template_id_b5a97819_fk_projects_projecttemplate_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT pr_creation_template_id_b5a97819_fk_projects_projecttemplate_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2912; 2606 16697 FK CONSTRAINT pr_default_us_status_id_cc989d55_fk_projects_userstorystatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "pr_default_us_status_id_cc989d55_fk_projects_userstorystatus_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT pr_default_us_status_id_cc989d55_fk_projects_userstorystatus_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2906; 2606 16667 FK CONSTRAINT pro_default_issue_status_id_6aebe7fd_fk_projects_issuestatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "pro_default_issue_status_id_6aebe7fd_fk_projects_issuestatus_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT pro_default_issue_status_id_6aebe7fd_fk_projects_issuestatus_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2913; 2606 18066 FK CONSTRAINT proje_default_epic_status_id_1915e581_fk_projects_epicstatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "proje_default_epic_status_id_1915e581_fk_projects_epicstatus_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT proje_default_epic_status_id_1915e581_fk_projects_epicstatus_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2911; 2606 16692 FK CONSTRAINT proje_default_task_status_id_3be95fee_fk_projects_taskstatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "proje_default_task_status_id_3be95fee_fk_projects_taskstatus_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT proje_default_task_status_id_3be95fee_fk_projects_taskstatus_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2907; 2606 16672 FK CONSTRAINT project_default_issue_type_id_89e9b202_fk_projects_issuetype_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "project_default_issue_type_id_89e9b202_fk_projects_issuetype_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT project_default_issue_type_id_89e9b202_fk_projects_issuetype_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2972; 2606 18061 FK CONSTRAINT projects_epicstatus_project_id_d2c43c29_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_epicstatus_project_id_d2c43c29_fk_projects_project_id" for relation "projects_epicstatus" already exists
Command was: ALTER TABLE ONLY projects_epicstatus
ADD CONSTRAINT projects_epicstatus_project_id_d2c43c29_fk_projects_project_id FOREI...
pg_restore: [archiver (db)] Error from TOC entry 2916; 2606 16618 FK CONSTRAINT projects_issuestatus_project_id_1988ebf4_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_issuestatus_project_id_1988ebf4_fk_projects_project_id" for relation "projects_issuestatus" already exists
Command was: ALTER TABLE ONLY projects_issuestatus
ADD CONSTRAINT projects_issuestatus_project_id_1988ebf4_fk_projects_project_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2917; 2606 16624 FK CONSTRAINT projects_issuetype_project_id_e831e4ae_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_issuetype_project_id_e831e4ae_fk_projects_project_id" for relation "projects_issuetype" already exists
Command was: ALTER TABLE ONLY projects_issuetype
ADD CONSTRAINT projects_issuetype_project_id_e831e4ae_fk_projects_project_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2902; 2606 17140 FK CONSTRAINT projects_membership_invited_by_id_a2c6c913_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_membership_invited_by_id_a2c6c913_fk_users_user_id" for relation "projects_membership" already exists
Command was: ALTER TABLE ONLY projects_membership
ADD CONSTRAINT projects_membership_invited_by_id_a2c6c913_fk_users_user_id FOREIGN ...
pg_restore: [archiver (db)] Error from TOC entry 2904; 2606 16510 FK CONSTRAINT projects_membership_project_id_5f65bf3f_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_membership_project_id_5f65bf3f_fk_projects_project_id" for relation "projects_membership" already exists
Command was: ALTER TABLE ONLY projects_membership
ADD CONSTRAINT projects_membership_project_id_5f65bf3f_fk_projects_project_id FOREI...
pg_restore: [archiver (db)] Error from TOC entry 2903; 2606 16516 FK CONSTRAINT projects_membership_role_id_c4bd36ef_fk_users_role_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_membership_role_id_c4bd36ef_fk_users_role_id" for relation "projects_membership" already exists
Command was: ALTER TABLE ONLY projects_membership
ADD CONSTRAINT projects_membership_role_id_c4bd36ef_fk_users_role_id FOREIGN KEY (r...
pg_restore: [archiver (db)] Error from TOC entry 2905; 2606 16504 FK CONSTRAINT projects_membership_user_id_13374535_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_membership_user_id_13374535_fk_users_user_id" for relation "projects_membership" already exists
Command was: ALTER TABLE ONLY projects_membership
ADD CONSTRAINT projects_membership_user_id_13374535_fk_users_user_id FOREIGN KEY (u...
pg_restore: [archiver (db)] Error from TOC entry 2909; 2606 16682 FK CONSTRAINT projects_p_default_priority_id_498ad5e0_fk_projects_priority_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_p_default_priority_id_498ad5e0_fk_projects_priority_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_p_default_priority_id_498ad5e0_fk_projects_priority_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2910; 2606 16687 FK CONSTRAINT projects_p_default_severity_id_34b7fa94_fk_projects_severity_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_p_default_severity_id_34b7fa94_fk_projects_severity_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_p_default_severity_id_34b7fa94_fk_projects_severity_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2918; 2606 16630 FK CONSTRAINT projects_points_project_id_3b8f7b42_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_points_project_id_3b8f7b42_fk_projects_project_id" for relation "projects_points" already exists
Command was: ALTER TABLE ONLY projects_points
ADD CONSTRAINT projects_points_project_id_3b8f7b42_fk_projects_project_id FOREIGN KEY (...
pg_restore: [archiver (db)] Error from TOC entry 2919; 2606 16636 FK CONSTRAINT projects_priority_project_id_936c75b2_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_priority_project_id_936c75b2_fk_projects_project_id" for relation "projects_priority" already exists
Command was: ALTER TABLE ONLY projects_priority
ADD CONSTRAINT projects_priority_project_id_936c75b2_fk_projects_project_id FOREIGN K...
pg_restore: [archiver (db)] Error from TOC entry 2908; 2606 16677 FK CONSTRAINT projects_proje_default_points_id_6c6701c2_fk_projects_points_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_proje_default_points_id_6c6701c2_fk_projects_points_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_proje_default_points_id_6c6701c2_fk_projects_points_id FOREIGN...
pg_restore: [archiver (db)] Error from TOC entry 2915; 2606 17949 FK CONSTRAINT projects_project_owner_id_b940de39_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_project_owner_id_b940de39_fk_users_user_id" for relation "projects_project" already exists
Command was: ALTER TABLE ONLY projects_project
ADD CONSTRAINT projects_project_owner_id_b940de39_fk_users_user_id FOREIGN KEY (owner_...
pg_restore: [archiver (db)] Error from TOC entry 2966; 2606 17491 FK CONSTRAINT projects_projectmodu_project_id_eff1c253_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_projectmodu_project_id_eff1c253_fk_projects_project_id" for relation "projects_projectmodulesconfig" already exists
Command was: ALTER TABLE ONLY projects_projectmodulesconfig
ADD CONSTRAINT projects_projectmodu_project_id_eff1c253_fk_projects_proje...
pg_restore: [archiver (db)] Error from TOC entry 2920; 2606 16643 FK CONSTRAINT projects_severity_project_id_9ab920cd_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_severity_project_id_9ab920cd_fk_projects_project_id" for relation "projects_severity" already exists
Command was: ALTER TABLE ONLY projects_severity
ADD CONSTRAINT projects_severity_project_id_9ab920cd_fk_projects_project_id FOREIGN K...
pg_restore: [archiver (db)] Error from TOC entry 2921; 2606 16649 FK CONSTRAINT projects_taskstatus_project_id_8b32b2bb_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_taskstatus_project_id_8b32b2bb_fk_projects_project_id" for relation "projects_taskstatus" already exists
Command was: ALTER TABLE ONLY projects_taskstatus
ADD CONSTRAINT projects_taskstatus_project_id_8b32b2bb_fk_projects_project_id FOREI...
pg_restore: [archiver (db)] Error from TOC entry 2922; 2606 16655 FK CONSTRAINT projects_userstoryst_project_id_cdf95c9c_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "projects_userstoryst_project_id_cdf95c9c_fk_projects_project_id" for relation "projects_userstorystatus" already exists
Command was: ALTER TABLE ONLY projects_userstorystatus
ADD CONSTRAINT projects_userstoryst_project_id_cdf95c9c_fk_projects_project_id...
pg_restore: [archiver (db)] Error from TOC entry 2999; 2606 18885 FK CONSTRAINT references_r_content_type_id_c134e05e_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "references_r_content_type_id_c134e05e_fk_django_content_type_id" for relation "references_reference" already exists
Command was: ALTER TABLE ONLY references_reference
ADD CONSTRAINT references_r_content_type_id_c134e05e_fk_django_content_type_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2998; 2606 18890 FK CONSTRAINT references_reference_project_id_00275368_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "references_reference_project_id_00275368_fk_projects_project_id" for relation "references_reference" already exists
Command was: ALTER TABLE ONLY references_reference
ADD CONSTRAINT references_reference_project_id_00275368_fk_projects_project_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2964; 2606 17314 FK CONSTRAINT tasks_task_assigned_to_id_e8821f61_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "tasks_task_assigned_to_id_e8821f61_fk_users_user_id" for relation "tasks_task" already exists
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_assigned_to_id_e8821f61_fk_users_user_id FOREIGN KEY (assigned_to_...
pg_restore: [archiver (db)] Error from TOC entry 2959; 2606 17400 FK CONSTRAINT tasks_task_milestone_id_64cc568f_fk_milestones_milestone_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "tasks_task_milestone_id_64cc568f_fk_milestones_milestone_id" for relation "tasks_task" already exists
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_milestone_id_64cc568f_fk_milestones_milestone_id FOREIGN KEY (mile...
pg_restore: [archiver (db)] Error from TOC entry 2963; 2606 17324 FK CONSTRAINT tasks_task_owner_id_db3dcc3e_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "tasks_task_owner_id_db3dcc3e_fk_users_user_id" for relation "tasks_task" already exists
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_owner_id_db3dcc3e_fk_users_user_id FOREIGN KEY (owner_id) REFERENC...
pg_restore: [archiver (db)] Error from TOC entry 2962; 2606 17329 FK CONSTRAINT tasks_task_project_id_a2815f0c_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "tasks_task_project_id_a2815f0c_fk_projects_project_id" for relation "tasks_task" already exists
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_project_id_a2815f0c_fk_projects_project_id FOREIGN KEY (project_id...
pg_restore: [archiver (db)] Error from TOC entry 2960; 2606 17395 FK CONSTRAINT tasks_task_status_id_899d2b90_fk_projects_taskstatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "tasks_task_status_id_899d2b90_fk_projects_taskstatus_id" for relation "tasks_task" already exists
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_status_id_899d2b90_fk_projects_taskstatus_id FOREIGN KEY (status_i...
pg_restore: [archiver (db)] Error from TOC entry 2961; 2606 17339 FK CONSTRAINT tasks_task_user_story_id_47ceaf1d_fk_userstories_userstory_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "tasks_task_user_story_id_47ceaf1d_fk_userstories_userstory_id" for relation "tasks_task" already exists
Command was: ALTER TABLE ONLY tasks_task
ADD CONSTRAINT tasks_task_user_story_id_47ceaf1d_fk_userstories_userstory_id FOREIGN KEY (us...
pg_restore: [archiver (db)] Error from TOC entry 2969; 2606 17534 FK CONSTRAINT timelin_data_content_type_id_0689742e_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "timelin_data_content_type_id_0689742e_fk_django_content_type_id" for relation "timeline_timeline" already exists
Command was: ALTER TABLE ONLY timeline_timeline
ADD CONSTRAINT timelin_data_content_type_id_0689742e_fk_django_content_type_id FOREIG...
pg_restore: [archiver (db)] Error from TOC entry 2968; 2606 17539 FK CONSTRAINT timeline_tim_content_type_id_5731a0c6_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "timeline_tim_content_type_id_5731a0c6_fk_django_content_type_id" for relation "timeline_timeline" already exists
Command was: ALTER TABLE ONLY timeline_timeline
ADD CONSTRAINT timeline_tim_content_type_id_5731a0c6_fk_django_content_type_id FOREIG...
pg_restore: [archiver (db)] Error from TOC entry 2967; 2606 17556 FK CONSTRAINT timeline_timeline_project_id_58d5eadd_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "timeline_timeline_project_id_58d5eadd_fk_projects_project_id" for relation "timeline_timeline" already exists
Command was: ALTER TABLE ONLY timeline_timeline
ADD CONSTRAINT timeline_timeline_project_id_58d5eadd_fk_projects_project_id FOREIGN K...
pg_restore: [archiver (db)] Error from TOC entry 2965; 2606 17426 FK CONSTRAINT users_authdata_user_id_9625853a_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "users_authdata_user_id_9625853a_fk_users_user_id" for relation "users_authdata" already exists
Command was: ALTER TABLE ONLY users_authdata
ADD CONSTRAINT users_authdata_user_id_9625853a_fk_users_user_id FOREIGN KEY (user_id) RE...
pg_restore: [archiver (db)] Error from TOC entry 2901; 2606 16824 FK CONSTRAINT users_role_project_id_2837f877_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "users_role_project_id_2837f877_fk_projects_project_id" for relation "users_role" already exists
Command was: ALTER TABLE ONLY users_role
ADD CONSTRAINT users_role_project_id_2837f877_fk_projects_project_id FOREIGN KEY (project_id...
pg_restore: [archiver (db)] Error from TOC entry 3000; 2606 18979 FK CONSTRAINT userstorage_storageentry_owner_id_c4c1ffc0_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstorage_storageentry_owner_id_c4c1ffc0_fk_users_user_id" for relation "userstorage_storageentry" already exists
Command was: ALTER TABLE ONLY userstorage_storageentry
ADD CONSTRAINT userstorage_storageentry_owner_id_c4c1ffc0_fk_users_user_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2940; 2606 17075 FK CONSTRAINT userstories__user_story_id_ddb4c558_fk_userstories_userstory_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories__user_story_id_ddb4c558_fk_userstories_userstory_id" for relation "userstories_rolepoints" already exists
Command was: ALTER TABLE ONLY userstories_rolepoints
ADD CONSTRAINT userstories__user_story_id_ddb4c558_fk_userstories_userstory_id F...
pg_restore: [archiver (db)] Error from TOC entry 2942; 2606 17131 FK CONSTRAINT userstories_generated_from_issue_id_afe43198_fk_issues_issue_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_generated_from_issue_id_afe43198_fk_issues_issue_id" for relation "userstories_userstory" already exists
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_generated_from_issue_id_afe43198_fk_issues_issue_id FO...
pg_restore: [archiver (db)] Error from TOC entry 2939; 2606 17080 FK CONSTRAINT userstories_rolepoints_points_id_cfcc5a79_fk_projects_points_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_rolepoints_points_id_cfcc5a79_fk_projects_points_id" for relation "userstories_rolepoints" already exists
Command was: ALTER TABLE ONLY userstories_rolepoints
ADD CONSTRAINT userstories_rolepoints_points_id_cfcc5a79_fk_projects_points_id F...
pg_restore: [archiver (db)] Error from TOC entry 2941; 2606 17016 FK CONSTRAINT userstories_rolepoints_role_id_94ac7663_fk_users_role_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_rolepoints_role_id_94ac7663_fk_users_role_id" for relation "userstories_rolepoints" already exists
Command was: ALTER TABLE ONLY userstories_rolepoints
ADD CONSTRAINT userstories_rolepoints_role_id_94ac7663_fk_users_role_id FOREIGN ...
pg_restore: [archiver (db)] Error from TOC entry 2943; 2606 17048 FK CONSTRAINT userstories_u_status_id_858671dd_fk_projects_userstorystatus_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_u_status_id_858671dd_fk_projects_userstorystatus_id" for relation "userstories_userstory" already exists
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_u_status_id_858671dd_fk_projects_userstorystatus_id FO...
pg_restore: [archiver (db)] Error from TOC entry 2946; 2606 17033 FK CONSTRAINT userstories_us_milestone_id_37f31d22_fk_milestones_milestone_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_us_milestone_id_37f31d22_fk_milestones_milestone_id" for relation "userstories_userstory" already exists
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_us_milestone_id_37f31d22_fk_milestones_milestone_id FO...
pg_restore: [archiver (db)] Error from TOC entry 2944; 2606 17043 FK CONSTRAINT userstories_userstor_project_id_03e85e9c_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_userstor_project_id_03e85e9c_fk_projects_project_id" for relation "userstories_userstory" already exists
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_userstor_project_id_03e85e9c_fk_projects_project_id FO...
pg_restore: [archiver (db)] Error from TOC entry 2947; 2606 17023 FK CONSTRAINT userstories_userstory_assigned_to_id_5ba80653_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_userstory_assigned_to_id_5ba80653_fk_users_user_id" for relation "userstories_userstory" already exists
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_userstory_assigned_to_id_5ba80653_fk_users_user_id FOR...
pg_restore: [archiver (db)] Error from TOC entry 2945; 2606 17038 FK CONSTRAINT userstories_userstory_owner_id_df53c64e_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "userstories_userstory_owner_id_df53c64e_fk_users_user_id" for relation "userstories_userstory" already exists
Command was: ALTER TABLE ONLY userstories_userstory
ADD CONSTRAINT userstories_userstory_owner_id_df53c64e_fk_users_user_id FOREIGN K...
pg_restore: [archiver (db)] Error from TOC entry 3002; 2606 19062 FK CONSTRAINT votes_vote_content_type_id_c8375fe1_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "votes_vote_content_type_id_c8375fe1_fk_django_content_type_id" for relation "votes_vote" already exists
Command was: ALTER TABLE ONLY votes_vote
ADD CONSTRAINT votes_vote_content_type_id_c8375fe1_fk_django_content_type_id FOREIGN KEY (co...
pg_restore: [archiver (db)] Error from TOC entry 3001; 2606 19088 FK CONSTRAINT votes_vote_user_id_24a74629_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "votes_vote_user_id_24a74629_fk_users_user_id" for relation "votes_vote" already exists
Command was: ALTER TABLE ONLY votes_vote
ADD CONSTRAINT votes_vote_user_id_24a74629_fk_users_user_id FOREIGN KEY (user_id) REFERENCES...
pg_restore: [archiver (db)] Error from TOC entry 3003; 2606 19074 FK CONSTRAINT votes_votes_content_type_id_29583576_fk_django_content_type_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "votes_votes_content_type_id_29583576_fk_django_content_type_id" for relation "votes_votes" already exists
Command was: ALTER TABLE ONLY votes_votes
ADD CONSTRAINT votes_votes_content_type_id_29583576_fk_django_content_type_id FOREIGN KEY (...
pg_restore: [archiver (db)] Error from TOC entry 3004; 2606 19115 FK CONSTRAINT webhooks_webhook_project_id_76846b5e_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "webhooks_webhook_project_id_76846b5e_fk_projects_project_id" for relation "webhooks_webhook" already exists
Command was: ALTER TABLE ONLY webhooks_webhook
ADD CONSTRAINT webhooks_webhook_project_id_76846b5e_fk_projects_project_id FOREIGN KEY...
pg_restore: [archiver (db)] Error from TOC entry 3005; 2606 19121 FK CONSTRAINT webhooks_webhooklog_webhook_id_646c2008_fk_webhooks_webhook_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "webhooks_webhooklog_webhook_id_646c2008_fk_webhooks_webhook_id" for relation "webhooks_webhooklog" already exists
Command was: ALTER TABLE ONLY webhooks_webhooklog
ADD CONSTRAINT webhooks_webhooklog_webhook_id_646c2008_fk_webhooks_webhook_id FOREI...
pg_restore: [archiver (db)] Error from TOC entry 2975; 2606 18225 FK CONSTRAINT wiki_wikilink_project_id_7dc700d7_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "wiki_wikilink_project_id_7dc700d7_fk_projects_project_id" for relation "wiki_wikilink" already exists
Command was: ALTER TABLE ONLY wiki_wikilink
ADD CONSTRAINT wiki_wikilink_project_id_7dc700d7_fk_projects_project_id FOREIGN KEY (proj...
pg_restore: [archiver (db)] Error from TOC entry 2978; 2606 18233 FK CONSTRAINT wiki_wikipage_last_modifier_id_38be071c_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "wiki_wikipage_last_modifier_id_38be071c_fk_users_user_id" for relation "wiki_wikipage" already exists
Command was: ALTER TABLE ONLY wiki_wikipage
ADD CONSTRAINT wiki_wikipage_last_modifier_id_38be071c_fk_users_user_id FOREIGN KEY (last...
pg_restore: [archiver (db)] Error from TOC entry 2977; 2606 18238 FK CONSTRAINT wiki_wikipage_owner_id_f1f6c5fd_fk_users_user_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "wiki_wikipage_owner_id_f1f6c5fd_fk_users_user_id" for relation "wiki_wikipage" already exists
Command was: ALTER TABLE ONLY wiki_wikipage
ADD CONSTRAINT wiki_wikipage_owner_id_f1f6c5fd_fk_users_user_id FOREIGN KEY (owner_id) RE...
pg_restore: [archiver (db)] Error from TOC entry 2976; 2606 18243 FK CONSTRAINT wiki_wikipage_project_id_03a1e2ca_fk_projects_project_id taiga
pg_restore: [archiver (db)] could not execute query: ERROR: constraint "wiki_wikipage_project_id_03a1e2ca_fk_projects_project_id" for relation "wiki_wikipage" already exists
Command was: ALTER TABLE ONLY wiki_wikipage
ADD CONSTRAINT wiki_wikipage_project_id_03a1e2ca_fk_projects_project_id FOREIGN KEY (proj...
WARNING: errors ignored on restore: 583
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment