1
|
postgres@Redmine:~$ pg_restore -U redmine -h localhost -d redmine redmineivan.sqlc
|
2
|
Password:
|
3
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4
|
RIGA 1: CREATE TABLE public.attachments (
|
5
|
^
|
6
|
Il comando era: CREATE TABLE public.attachments (
|
7
|
id integer NOT NULL,
|
8
|
container_id integer,
|
9
|
container_type character varying(30),
|
10
|
filename character varying DEFAULT ''::character varying NOT NULL,
|
11
|
disk_filename character varying DEFAULT ''::character varying NOT NULL,
|
12
|
filesize bigint DEFAULT 0 NOT NULL,
|
13
|
content_type character varying DEFAULT ''::character varying,
|
14
|
digest character varying(64) DEFAULT ''::character varying NOT NULL,
|
15
|
downloads integer DEFAULT 0 NOT NULL,
|
16
|
author_id integer DEFAULT 0 NOT NULL,
|
17
|
created_on timestamp without time zone,
|
18
|
description character varying,
|
19
|
disk_directory character varying
|
20
|
);
|
21
|
|
22
|
|
23
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
24
|
Il comando era: ALTER TABLE public.attachments OWNER TO redmine;
|
25
|
|
26
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
27
|
Il comando era: CREATE SEQUENCE public.attachments_id_seq
|
28
|
START WITH 1
|
29
|
INCREMENT BY 1
|
30
|
NO MINVALUE
|
31
|
NO MAXVALUE
|
32
|
CACHE 1;
|
33
|
|
34
|
|
35
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza attachments_id_seq
|
36
|
Il comando era: ALTER TABLE public.attachments_id_seq OWNER TO redmine;
|
37
|
|
38
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza attachments_id_seq
|
39
|
Il comando era: ALTER SEQUENCE public.attachments_id_seq OWNED BY public.attachments.id;
|
40
|
|
41
|
|
42
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
43
|
RIGA 1: CREATE TABLE public.auth_sources (
|
44
|
^
|
45
|
Il comando era: CREATE TABLE public.auth_sources (
|
46
|
id integer NOT NULL,
|
47
|
type character varying(30) DEFAULT ''::character varying NOT NULL,
|
48
|
name character varying(60) DEFAULT ''::character varying NOT NULL,
|
49
|
host character varying(60),
|
50
|
port integer,
|
51
|
account character varying,
|
52
|
account_password character varying DEFAULT ''::character varying,
|
53
|
base_dn character varying(255),
|
54
|
attr_login character varying(30),
|
55
|
attr_firstname character varying(30),
|
56
|
attr_lastname character varying(30),
|
57
|
attr_mail character varying(30),
|
58
|
onthefly_register boolean DEFAULT false NOT NULL,
|
59
|
tls boolean DEFAULT false NOT NULL,
|
60
|
filter text,
|
61
|
timeout integer
|
62
|
);
|
63
|
|
64
|
|
65
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
66
|
Il comando era: ALTER TABLE public.auth_sources OWNER TO redmine;
|
67
|
|
68
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
69
|
Il comando era: CREATE SEQUENCE public.auth_sources_id_seq
|
70
|
START WITH 1
|
71
|
INCREMENT BY 1
|
72
|
NO MINVALUE
|
73
|
NO MAXVALUE
|
74
|
CACHE 1;
|
75
|
|
76
|
|
77
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza auth_sources_id_seq
|
78
|
Il comando era: ALTER TABLE public.auth_sources_id_seq OWNER TO redmine;
|
79
|
|
80
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza auth_sources_id_seq
|
81
|
Il comando era: ALTER SEQUENCE public.auth_sources_id_seq OWNED BY public.auth_sources.id;
|
82
|
|
83
|
|
84
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
85
|
RIGA 1: CREATE TABLE public.boards (
|
86
|
^
|
87
|
Il comando era: CREATE TABLE public.boards (
|
88
|
id integer NOT NULL,
|
89
|
project_id integer NOT NULL,
|
90
|
name character varying DEFAULT ''::character varying NOT NULL,
|
91
|
description character varying,
|
92
|
"position" integer,
|
93
|
topics_count integer DEFAULT 0 NOT NULL,
|
94
|
messages_count integer DEFAULT 0 NOT NULL,
|
95
|
last_message_id integer,
|
96
|
parent_id integer
|
97
|
);
|
98
|
|
99
|
|
100
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
101
|
Il comando era: ALTER TABLE public.boards OWNER TO redmine;
|
102
|
|
103
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
104
|
Il comando era: CREATE SEQUENCE public.boards_id_seq
|
105
|
START WITH 1
|
106
|
INCREMENT BY 1
|
107
|
NO MINVALUE
|
108
|
NO MAXVALUE
|
109
|
CACHE 1;
|
110
|
|
111
|
|
112
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza boards_id_seq
|
113
|
Il comando era: ALTER TABLE public.boards_id_seq OWNER TO redmine;
|
114
|
|
115
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza boards_id_seq
|
116
|
Il comando era: ALTER SEQUENCE public.boards_id_seq OWNED BY public.boards.id;
|
117
|
|
118
|
|
119
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
120
|
RIGA 1: CREATE TABLE public.changes (
|
121
|
^
|
122
|
Il comando era: CREATE TABLE public.changes (
|
123
|
id integer NOT NULL,
|
124
|
changeset_id integer NOT NULL,
|
125
|
action character varying(1) DEFAULT ''::character varying NOT NULL,
|
126
|
path text NOT NULL,
|
127
|
from_path text,
|
128
|
from_revision character varying,
|
129
|
revision character varying,
|
130
|
branch character varying
|
131
|
);
|
132
|
|
133
|
|
134
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
135
|
Il comando era: ALTER TABLE public.changes OWNER TO redmine;
|
136
|
|
137
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
138
|
Il comando era: CREATE SEQUENCE public.changes_id_seq
|
139
|
START WITH 1
|
140
|
INCREMENT BY 1
|
141
|
NO MINVALUE
|
142
|
NO MAXVALUE
|
143
|
CACHE 1;
|
144
|
|
145
|
|
146
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changes_id_seq
|
147
|
Il comando era: ALTER TABLE public.changes_id_seq OWNER TO redmine;
|
148
|
|
149
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changes_id_seq
|
150
|
Il comando era: ALTER SEQUENCE public.changes_id_seq OWNED BY public.changes.id;
|
151
|
|
152
|
|
153
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
154
|
RIGA 1: CREATE TABLE public.changeset_parents (
|
155
|
^
|
156
|
Il comando era: CREATE TABLE public.changeset_parents (
|
157
|
changeset_id integer NOT NULL,
|
158
|
parent_id integer NOT NULL
|
159
|
);
|
160
|
|
161
|
|
162
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changeset_parents
|
163
|
Il comando era: ALTER TABLE public.changeset_parents OWNER TO redmine;
|
164
|
|
165
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
166
|
RIGA 1: CREATE TABLE public.changesets (
|
167
|
^
|
168
|
Il comando era: CREATE TABLE public.changesets (
|
169
|
id integer NOT NULL,
|
170
|
repository_id integer NOT NULL,
|
171
|
revision character varying NOT NULL,
|
172
|
committer character varying,
|
173
|
committed_on timestamp without time zone NOT NULL,
|
174
|
comments text,
|
175
|
commit_date date,
|
176
|
scmid character varying,
|
177
|
user_id integer
|
178
|
);
|
179
|
|
180
|
|
181
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
182
|
Il comando era: ALTER TABLE public.changesets OWNER TO redmine;
|
183
|
|
184
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
185
|
Il comando era: CREATE SEQUENCE public.changesets_id_seq
|
186
|
START WITH 1
|
187
|
INCREMENT BY 1
|
188
|
NO MINVALUE
|
189
|
NO MAXVALUE
|
190
|
CACHE 1;
|
191
|
|
192
|
|
193
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changesets_id_seq
|
194
|
Il comando era: ALTER TABLE public.changesets_id_seq OWNER TO redmine;
|
195
|
|
196
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changesets_id_seq
|
197
|
Il comando era: ALTER SEQUENCE public.changesets_id_seq OWNED BY public.changesets.id;
|
198
|
|
199
|
|
200
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
201
|
RIGA 1: CREATE TABLE public.changesets_issues (
|
202
|
^
|
203
|
Il comando era: CREATE TABLE public.changesets_issues (
|
204
|
changeset_id integer NOT NULL,
|
205
|
issue_id integer NOT NULL
|
206
|
);
|
207
|
|
208
|
|
209
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets_issues
|
210
|
Il comando era: ALTER TABLE public.changesets_issues OWNER TO redmine;
|
211
|
|
212
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
213
|
RIGA 1: CREATE TABLE public.comments (
|
214
|
^
|
215
|
Il comando era: CREATE TABLE public.comments (
|
216
|
id integer NOT NULL,
|
217
|
commented_type character varying(30) DEFAULT ''::character varying NOT NULL,
|
218
|
commented_id integer DEFAULT 0 NOT NULL,
|
219
|
author_id integer DEFAULT 0 NOT NULL,
|
220
|
comments text,
|
221
|
created_on timestamp without time zone NOT NULL,
|
222
|
updated_on timestamp without time zone NOT NULL
|
223
|
);
|
224
|
|
225
|
|
226
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
227
|
Il comando era: ALTER TABLE public.comments OWNER TO redmine;
|
228
|
|
229
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
230
|
Il comando era: CREATE SEQUENCE public.comments_id_seq
|
231
|
START WITH 1
|
232
|
INCREMENT BY 1
|
233
|
NO MINVALUE
|
234
|
NO MAXVALUE
|
235
|
CACHE 1;
|
236
|
|
237
|
|
238
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza comments_id_seq
|
239
|
Il comando era: ALTER TABLE public.comments_id_seq OWNER TO redmine;
|
240
|
|
241
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza comments_id_seq
|
242
|
Il comando era: ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;
|
243
|
|
244
|
|
245
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
246
|
RIGA 1: CREATE TABLE public.custom_field_enumerations (
|
247
|
^
|
248
|
Il comando era: CREATE TABLE public.custom_field_enumerations (
|
249
|
id integer NOT NULL,
|
250
|
custom_field_id integer NOT NULL,
|
251
|
name character varying NOT NULL,
|
252
|
active boolean DEFAULT true NOT NULL,
|
253
|
"position" integer DEFAULT 1 NOT NULL
|
254
|
);
|
255
|
|
256
|
|
257
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_field_enumerations Il comando era: ALTER TABLE public.custom_field_enumerations OWNER TO redmine;
|
258
|
|
259
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
260
|
Il comando era: CREATE SEQUENCE public.custom_field_enumerations_id_seq
|
261
|
START WITH 1
|
262
|
INCREMENT BY 1
|
263
|
NO MINVALUE
|
264
|
NO MAXVALUE
|
265
|
CACHE 1;
|
266
|
|
267
|
|
268
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_field_enumerations_id_seq
|
269
|
Il comando era: ALTER TABLE public.custom_field_enumerations_id_seq OWNER TO redmine;
|
270
|
|
271
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_field_enumerations_id_seq
|
272
|
Il comando era: ALTER SEQUENCE public.custom_field_enumerations_id_seq OWNED BY public.custom_field_enumerations.id;
|
273
|
|
274
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
275
|
RIGA 1: CREATE TABLE public.custom_fields (
|
276
|
^
|
277
|
Il comando era: CREATE TABLE public.custom_fields (
|
278
|
id integer NOT NULL,
|
279
|
type character varying(30) DEFAULT ''::character varying NOT NULL,
|
280
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
281
|
field_format character varying(30) DEFAULT ''::character varying NOT NULL,
|
282
|
possible_values text,
|
283
|
regexp character varying DEFAULT ''::character varying,
|
284
|
min_length integer,
|
285
|
max_length integer,
|
286
|
is_required boolean DEFAULT false NOT NULL,
|
287
|
is_for_all boolean DEFAULT false NOT NULL,
|
288
|
is_filter boolean DEFAULT false NOT NULL,
|
289
|
"position" integer,
|
290
|
searchable boolean DEFAULT false,
|
291
|
default_value text,
|
292
|
editable boolean DEFAULT true,
|
293
|
visible boolean DEFAULT true NOT NULL,
|
294
|
multiple boolean DEFAULT false,
|
295
|
format_store text,
|
296
|
description text
|
297
|
);
|
298
|
|
299
|
|
300
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
301
|
Il comando era: ALTER TABLE public.custom_fields OWNER TO redmine;
|
302
|
|
303
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
304
|
Il comando era: CREATE SEQUENCE public.custom_fields_id_seq
|
305
|
START WITH 1
|
306
|
INCREMENT BY 1
|
307
|
NO MINVALUE
|
308
|
NO MAXVALUE
|
309
|
CACHE 1;
|
310
|
|
311
|
|
312
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_fields_id_seq
|
313
|
Il comando era: ALTER TABLE public.custom_fields_id_seq OWNER TO redmine;
|
314
|
|
315
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_fields_id_seq
|
316
|
Il comando era: ALTER SEQUENCE public.custom_fields_id_seq OWNED BY public.custom_fields.id;
|
317
|
|
318
|
|
319
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
320
|
RIGA 1: CREATE TABLE public.custom_fields_projects (
|
321
|
^
|
322
|
Il comando era: CREATE TABLE public.custom_fields_projects (
|
323
|
custom_field_id integer DEFAULT 0 NOT NULL,
|
324
|
project_id integer DEFAULT 0 NOT NULL
|
325
|
);
|
326
|
|
327
|
|
328
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_projects
|
329
|
Il comando era: ALTER TABLE public.custom_fields_projects OWNER TO redmine;
|
330
|
|
331
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
332
|
RIGA 1: CREATE TABLE public.custom_fields_roles (
|
333
|
^
|
334
|
Il comando era: CREATE TABLE public.custom_fields_roles (
|
335
|
custom_field_id integer NOT NULL,
|
336
|
role_id integer NOT NULL
|
337
|
);
|
338
|
|
339
|
|
340
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_roles
|
341
|
Il comando era: ALTER TABLE public.custom_fields_roles OWNER TO redmine;
|
342
|
|
343
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
344
|
RIGA 1: CREATE TABLE public.custom_fields_trackers (
|
345
|
^
|
346
|
Il comando era: CREATE TABLE public.custom_fields_trackers (
|
347
|
custom_field_id integer DEFAULT 0 NOT NULL,
|
348
|
tracker_id integer DEFAULT 0 NOT NULL
|
349
|
);
|
350
|
|
351
|
|
352
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_trackers
|
353
|
Il comando era: ALTER TABLE public.custom_fields_trackers OWNER TO redmine;
|
354
|
|
355
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
356
|
RIGA 1: CREATE TABLE public.custom_values (
|
357
|
^
|
358
|
Il comando era: CREATE TABLE public.custom_values (
|
359
|
id integer NOT NULL,
|
360
|
customized_type character varying(30) DEFAULT ''::character varying NOT NULL,
|
361
|
customized_id integer DEFAULT 0 NOT NULL,
|
362
|
custom_field_id integer DEFAULT 0 NOT NULL,
|
363
|
value text
|
364
|
);
|
365
|
|
366
|
|
367
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
368
|
Il comando era: ALTER TABLE public.custom_values OWNER TO redmine;
|
369
|
|
370
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
371
|
Il comando era: CREATE SEQUENCE public.custom_values_id_seq
|
372
|
START WITH 1
|
373
|
INCREMENT BY 1
|
374
|
NO MINVALUE
|
375
|
NO MAXVALUE
|
376
|
CACHE 1;
|
377
|
|
378
|
|
379
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_values_id_seq
|
380
|
Il comando era: ALTER TABLE public.custom_values_id_seq OWNER TO redmine;
|
381
|
|
382
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_values_id_seq
|
383
|
Il comando era: ALTER SEQUENCE public.custom_values_id_seq OWNED BY public.custom_values.id;
|
384
|
|
385
|
|
386
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
387
|
RIGA 1: CREATE TABLE public.documents (
|
388
|
^
|
389
|
Il comando era: CREATE TABLE public.documents (
|
390
|
id integer NOT NULL,
|
391
|
project_id integer DEFAULT 0 NOT NULL,
|
392
|
category_id integer DEFAULT 0 NOT NULL,
|
393
|
title character varying DEFAULT ''::character varying NOT NULL,
|
394
|
description text,
|
395
|
created_on timestamp without time zone
|
396
|
);
|
397
|
|
398
|
|
399
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
400
|
Il comando era: ALTER TABLE public.documents OWNER TO redmine;
|
401
|
|
402
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
403
|
Il comando era: CREATE SEQUENCE public.documents_id_seq
|
404
|
START WITH 1
|
405
|
INCREMENT BY 1
|
406
|
NO MINVALUE
|
407
|
NO MAXVALUE
|
408
|
CACHE 1;
|
409
|
|
410
|
|
411
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza documents_id_seq
|
412
|
Il comando era: ALTER TABLE public.documents_id_seq OWNER TO redmine;
|
413
|
|
414
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza documents_id_seq
|
415
|
Il comando era: ALTER SEQUENCE public.documents_id_seq OWNED BY public.documents.id;
|
416
|
|
417
|
|
418
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
419
|
RIGA 1: CREATE TABLE public.email_addresses (
|
420
|
^
|
421
|
Il comando era: CREATE TABLE public.email_addresses (
|
422
|
id integer NOT NULL,
|
423
|
user_id integer NOT NULL,
|
424
|
address character varying NOT NULL,
|
425
|
is_default boolean DEFAULT false NOT NULL,
|
426
|
notify boolean DEFAULT true NOT NULL,
|
427
|
created_on timestamp without time zone NOT NULL,
|
428
|
updated_on timestamp without time zone NOT NULL
|
429
|
);
|
430
|
|
431
|
|
432
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
433
|
Il comando era: ALTER TABLE public.email_addresses OWNER TO redmine;
|
434
|
|
435
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
436
|
Il comando era: CREATE SEQUENCE public.email_addresses_id_seq
|
437
|
START WITH 1
|
438
|
INCREMENT BY 1
|
439
|
NO MINVALUE
|
440
|
NO MAXVALUE
|
441
|
CACHE 1;
|
442
|
|
443
|
|
444
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza email_addresses_id_seq
|
445
|
Il comando era: ALTER TABLE public.email_addresses_id_seq OWNER TO redmine;
|
446
|
|
447
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza email_addresses_id_seq
|
448
|
Il comando era: ALTER SEQUENCE public.email_addresses_id_seq OWNED BY public.email_addresses.id;
|
449
|
|
450
|
|
451
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
452
|
RIGA 1: CREATE TABLE public.enabled_modules (
|
453
|
^
|
454
|
Il comando era: CREATE TABLE public.enabled_modules (
|
455
|
id integer NOT NULL,
|
456
|
project_id integer,
|
457
|
name character varying NOT NULL
|
458
|
);
|
459
|
|
460
|
|
461
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
462
|
Il comando era: ALTER TABLE public.enabled_modules OWNER TO redmine;
|
463
|
|
464
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
465
|
Il comando era: CREATE SEQUENCE public.enabled_modules_id_seq
|
466
|
START WITH 1
|
467
|
INCREMENT BY 1
|
468
|
NO MINVALUE
|
469
|
NO MAXVALUE
|
470
|
CACHE 1;
|
471
|
|
472
|
|
473
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enabled_modules_id_seq
|
474
|
Il comando era: ALTER TABLE public.enabled_modules_id_seq OWNER TO redmine;
|
475
|
|
476
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enabled_modules_id_seq
|
477
|
Il comando era: ALTER SEQUENCE public.enabled_modules_id_seq OWNED BY public.enabled_modules.id;
|
478
|
|
479
|
|
480
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
481
|
RIGA 1: CREATE TABLE public.enumerations (
|
482
|
^
|
483
|
Il comando era: CREATE TABLE public.enumerations (
|
484
|
id integer NOT NULL,
|
485
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
486
|
"position" integer,
|
487
|
is_default boolean DEFAULT false NOT NULL,
|
488
|
type character varying,
|
489
|
active boolean DEFAULT true NOT NULL,
|
490
|
project_id integer,
|
491
|
parent_id integer,
|
492
|
position_name character varying(30)
|
493
|
);
|
494
|
|
495
|
|
496
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
497
|
Il comando era: ALTER TABLE public.enumerations OWNER TO redmine;
|
498
|
|
499
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
500
|
Il comando era: CREATE SEQUENCE public.enumerations_id_seq
|
501
|
START WITH 1
|
502
|
INCREMENT BY 1
|
503
|
NO MINVALUE
|
504
|
NO MAXVALUE
|
505
|
CACHE 1;
|
506
|
|
507
|
|
508
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enumerations_id_seq
|
509
|
Il comando era: ALTER TABLE public.enumerations_id_seq OWNER TO redmine;
|
510
|
|
511
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enumerations_id_seq
|
512
|
Il comando era: ALTER SEQUENCE public.enumerations_id_seq OWNED BY public.enumerations.id;
|
513
|
|
514
|
|
515
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
516
|
RIGA 1: CREATE TABLE public.groups_users (
|
517
|
^
|
518
|
Il comando era: CREATE TABLE public.groups_users (
|
519
|
group_id integer NOT NULL,
|
520
|
user_id integer NOT NULL
|
521
|
);
|
522
|
|
523
|
|
524
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella groups_users
|
525
|
Il comando era: ALTER TABLE public.groups_users OWNER TO redmine;
|
526
|
|
527
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
528
|
RIGA 1: CREATE TABLE public.import_items (
|
529
|
^
|
530
|
Il comando era: CREATE TABLE public.import_items (
|
531
|
id integer NOT NULL,
|
532
|
import_id integer NOT NULL,
|
533
|
"position" integer NOT NULL,
|
534
|
obj_id integer,
|
535
|
message text
|
536
|
);
|
537
|
|
538
|
|
539
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella import_items
|
540
|
Il comando era: ALTER TABLE public.import_items OWNER TO redmine;
|
541
|
|
542
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
543
|
Il comando era: CREATE SEQUENCE public.import_items_id_seq
|
544
|
START WITH 1
|
545
|
INCREMENT BY 1
|
546
|
NO MINVALUE
|
547
|
NO MAXVALUE
|
548
|
CACHE 1;
|
549
|
|
550
|
|
551
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza import_items_id_seq
|
552
|
Il comando era: ALTER TABLE public.import_items_id_seq OWNER TO redmine;
|
553
|
|
554
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza import_items_id_seq
|
555
|
Il comando era: ALTER SEQUENCE public.import_items_id_seq OWNED BY public.import_items.id;
|
556
|
|
557
|
|
558
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
559
|
RIGA 1: CREATE TABLE public.imports (
|
560
|
^
|
561
|
Il comando era: CREATE TABLE public.imports (
|
562
|
id integer NOT NULL,
|
563
|
type character varying,
|
564
|
user_id integer NOT NULL,
|
565
|
filename character varying,
|
566
|
settings text,
|
567
|
total_items integer,
|
568
|
finished boolean DEFAULT false NOT NULL,
|
569
|
created_at timestamp without time zone NOT NULL,
|
570
|
updated_at timestamp without time zone NOT NULL
|
571
|
);
|
572
|
|
573
|
|
574
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella imports
|
575
|
Il comando era: ALTER TABLE public.imports OWNER TO redmine;
|
576
|
|
577
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
578
|
Il comando era: CREATE SEQUENCE public.imports_id_seq
|
579
|
START WITH 1
|
580
|
INCREMENT BY 1
|
581
|
NO MINVALUE
|
582
|
NO MAXVALUE
|
583
|
CACHE 1;
|
584
|
|
585
|
|
586
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza imports_id_seq
|
587
|
Il comando era: ALTER TABLE public.imports_id_seq OWNER TO redmine;
|
588
|
|
589
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza imports_id_seq
|
590
|
Il comando era: ALTER SEQUENCE public.imports_id_seq OWNED BY public.imports.id;
|
591
|
|
592
|
|
593
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
594
|
RIGA 1: CREATE TABLE public.issue_categories (
|
595
|
^
|
596
|
Il comando era: CREATE TABLE public.issue_categories (
|
597
|
id integer NOT NULL,
|
598
|
project_id integer DEFAULT 0 NOT NULL,
|
599
|
name character varying(60) DEFAULT ''::character varying NOT NULL,
|
600
|
assigned_to_id integer
|
601
|
);
|
602
|
|
603
|
|
604
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
605
|
Il comando era: ALTER TABLE public.issue_categories OWNER TO redmine;
|
606
|
|
607
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
608
|
Il comando era: CREATE SEQUENCE public.issue_categories_id_seq
|
609
|
START WITH 1
|
610
|
INCREMENT BY 1
|
611
|
NO MINVALUE
|
612
|
NO MAXVALUE
|
613
|
CACHE 1;
|
614
|
|
615
|
|
616
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_categories_id_seq
|
617
|
Il comando era: ALTER TABLE public.issue_categories_id_seq OWNER TO redmine;
|
618
|
|
619
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_categories_id_seq
|
620
|
Il comando era: ALTER SEQUENCE public.issue_categories_id_seq OWNED BY public.issue_categories.id;
|
621
|
|
622
|
|
623
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
624
|
RIGA 1: CREATE TABLE public.issue_relations (
|
625
|
^
|
626
|
Il comando era: CREATE TABLE public.issue_relations (
|
627
|
id integer NOT NULL,
|
628
|
issue_from_id integer NOT NULL,
|
629
|
issue_to_id integer NOT NULL,
|
630
|
relation_type character varying DEFAULT ''::character varying NOT NULL,
|
631
|
delay integer
|
632
|
);
|
633
|
|
634
|
|
635
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
636
|
Il comando era: ALTER TABLE public.issue_relations OWNER TO redmine;
|
637
|
|
638
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
639
|
Il comando era: CREATE SEQUENCE public.issue_relations_id_seq
|
640
|
START WITH 1
|
641
|
INCREMENT BY 1
|
642
|
NO MINVALUE
|
643
|
NO MAXVALUE
|
644
|
CACHE 1;
|
645
|
|
646
|
|
647
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_relations_id_seq
|
648
|
Il comando era: ALTER TABLE public.issue_relations_id_seq OWNER TO redmine;
|
649
|
|
650
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_relations_id_seq
|
651
|
Il comando era: ALTER SEQUENCE public.issue_relations_id_seq OWNED BY public.issue_relations.id;
|
652
|
|
653
|
|
654
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
655
|
RIGA 1: CREATE TABLE public.issue_statuses (
|
656
|
^
|
657
|
Il comando era: CREATE TABLE public.issue_statuses (
|
658
|
id integer NOT NULL,
|
659
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
660
|
is_closed boolean DEFAULT false NOT NULL,
|
661
|
"position" integer,
|
662
|
default_done_ratio integer
|
663
|
);
|
664
|
|
665
|
|
666
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
667
|
Il comando era: ALTER TABLE public.issue_statuses OWNER TO redmine;
|
668
|
|
669
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
670
|
Il comando era: CREATE SEQUENCE public.issue_statuses_id_seq
|
671
|
START WITH 1
|
672
|
INCREMENT BY 1
|
673
|
NO MINVALUE
|
674
|
NO MAXVALUE
|
675
|
CACHE 1;
|
676
|
|
677
|
|
678
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_statuses_id_seq
|
679
|
Il comando era: ALTER TABLE public.issue_statuses_id_seq OWNER TO redmine;
|
680
|
|
681
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_statuses_id_seq
|
682
|
Il comando era: ALTER SEQUENCE public.issue_statuses_id_seq OWNED BY public.issue_statuses.id;
|
683
|
|
684
|
|
685
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
686
|
RIGA 1: CREATE TABLE public.issues (
|
687
|
^
|
688
|
Il comando era: CREATE TABLE public.issues (
|
689
|
id integer NOT NULL,
|
690
|
tracker_id integer NOT NULL,
|
691
|
project_id integer NOT NULL,
|
692
|
subject character varying DEFAULT ''::character varying NOT NULL,
|
693
|
description text,
|
694
|
due_date date,
|
695
|
category_id integer,
|
696
|
status_id integer NOT NULL,
|
697
|
assigned_to_id integer,
|
698
|
priority_id integer NOT NULL,
|
699
|
fixed_version_id integer,
|
700
|
author_id integer NOT NULL,
|
701
|
lock_version integer DEFAULT 0 NOT NULL,
|
702
|
created_on timestamp without time zone,
|
703
|
updated_on timestamp without time zone,
|
704
|
start_date date,
|
705
|
done_ratio integer DEFAULT 0 NOT NULL,
|
706
|
estimated_hours double precision,
|
707
|
parent_id integer,
|
708
|
root_id integer,
|
709
|
lft integer,
|
710
|
rgt integer,
|
711
|
is_private boolean DEFAULT false NOT NULL,
|
712
|
closed_on timestamp without time zone
|
713
|
);
|
714
|
|
715
|
|
716
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
717
|
Il comando era: ALTER TABLE public.issues OWNER TO redmine;
|
718
|
|
719
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
720
|
Il comando era: CREATE SEQUENCE public.issues_id_seq
|
721
|
START WITH 1
|
722
|
INCREMENT BY 1
|
723
|
NO MINVALUE
|
724
|
NO MAXVALUE
|
725
|
CACHE 1;
|
726
|
|
727
|
|
728
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issues_id_seq
|
729
|
Il comando era: ALTER TABLE public.issues_id_seq OWNER TO redmine;
|
730
|
|
731
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issues_id_seq
|
732
|
Il comando era: ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;
|
733
|
|
734
|
|
735
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
736
|
RIGA 1: CREATE TABLE public.journal_details (
|
737
|
^
|
738
|
Il comando era: CREATE TABLE public.journal_details (
|
739
|
id integer NOT NULL,
|
740
|
journal_id integer DEFAULT 0 NOT NULL,
|
741
|
property character varying(30) DEFAULT ''::character varying NOT NULL,
|
742
|
prop_key character varying(30) DEFAULT ''::character varying NOT NULL,
|
743
|
old_value text,
|
744
|
value text
|
745
|
);
|
746
|
|
747
|
|
748
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
749
|
Il comando era: ALTER TABLE public.journal_details OWNER TO redmine;
|
750
|
|
751
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
752
|
Il comando era: CREATE SEQUENCE public.journal_details_id_seq
|
753
|
START WITH 1
|
754
|
INCREMENT BY 1
|
755
|
NO MINVALUE
|
756
|
NO MAXVALUE
|
757
|
CACHE 1;
|
758
|
|
759
|
|
760
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journal_details_id_seq
|
761
|
Il comando era: ALTER TABLE public.journal_details_id_seq OWNER TO redmine;
|
762
|
|
763
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journal_details_id_seq
|
764
|
Il comando era: ALTER SEQUENCE public.journal_details_id_seq OWNED BY public.journal_details.id;
|
765
|
|
766
|
|
767
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
768
|
RIGA 1: CREATE TABLE public.journals (
|
769
|
^
|
770
|
Il comando era: CREATE TABLE public.journals (
|
771
|
id integer NOT NULL,
|
772
|
journalized_id integer DEFAULT 0 NOT NULL,
|
773
|
journalized_type character varying(30) DEFAULT ''::character varying NOT NULL,
|
774
|
user_id integer DEFAULT 0 NOT NULL,
|
775
|
notes text,
|
776
|
created_on timestamp without time zone NOT NULL,
|
777
|
private_notes boolean DEFAULT false NOT NULL
|
778
|
);
|
779
|
|
780
|
|
781
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
782
|
Il comando era: ALTER TABLE public.journals OWNER TO redmine;
|
783
|
|
784
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
785
|
Il comando era: CREATE SEQUENCE public.journals_id_seq
|
786
|
START WITH 1
|
787
|
INCREMENT BY 1
|
788
|
NO MINVALUE
|
789
|
NO MAXVALUE
|
790
|
CACHE 1;
|
791
|
|
792
|
|
793
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journals_id_seq
|
794
|
Il comando era: ALTER TABLE public.journals_id_seq OWNER TO redmine;
|
795
|
|
796
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journals_id_seq
|
797
|
Il comando era: ALTER SEQUENCE public.journals_id_seq OWNED BY public.journals.id;
|
798
|
|
799
|
|
800
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
801
|
RIGA 1: CREATE TABLE public.member_roles (
|
802
|
^
|
803
|
Il comando era: CREATE TABLE public.member_roles (
|
804
|
id integer NOT NULL,
|
805
|
member_id integer NOT NULL,
|
806
|
role_id integer NOT NULL,
|
807
|
inherited_from integer
|
808
|
);
|
809
|
|
810
|
|
811
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
812
|
Il comando era: ALTER TABLE public.member_roles OWNER TO redmine;
|
813
|
|
814
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
815
|
Il comando era: CREATE SEQUENCE public.member_roles_id_seq
|
816
|
START WITH 1
|
817
|
INCREMENT BY 1
|
818
|
NO MINVALUE
|
819
|
NO MAXVALUE
|
820
|
CACHE 1;
|
821
|
|
822
|
|
823
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza member_roles_id_seq
|
824
|
Il comando era: ALTER TABLE public.member_roles_id_seq OWNER TO redmine;
|
825
|
|
826
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza member_roles_id_seq
|
827
|
Il comando era: ALTER SEQUENCE public.member_roles_id_seq OWNED BY public.member_roles.id;
|
828
|
|
829
|
|
830
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
831
|
RIGA 1: CREATE TABLE public.members (
|
832
|
^
|
833
|
Il comando era: CREATE TABLE public.members (
|
834
|
id integer NOT NULL,
|
835
|
user_id integer DEFAULT 0 NOT NULL,
|
836
|
project_id integer DEFAULT 0 NOT NULL,
|
837
|
created_on timestamp without time zone,
|
838
|
mail_notification boolean DEFAULT false NOT NULL
|
839
|
);
|
840
|
|
841
|
|
842
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
843
|
Il comando era: ALTER TABLE public.members OWNER TO redmine;
|
844
|
|
845
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
846
|
Il comando era: CREATE SEQUENCE public.members_id_seq
|
847
|
START WITH 1
|
848
|
INCREMENT BY 1
|
849
|
NO MINVALUE
|
850
|
NO MAXVALUE
|
851
|
CACHE 1;
|
852
|
|
853
|
|
854
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza members_id_seq
|
855
|
Il comando era: ALTER TABLE public.members_id_seq OWNER TO redmine;
|
856
|
|
857
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza members_id_seq
|
858
|
Il comando era: ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id;
|
859
|
|
860
|
|
861
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
862
|
RIGA 1: CREATE TABLE public.messages (
|
863
|
^
|
864
|
Il comando era: CREATE TABLE public.messages (
|
865
|
id integer NOT NULL,
|
866
|
board_id integer NOT NULL,
|
867
|
parent_id integer,
|
868
|
subject character varying DEFAULT ''::character varying NOT NULL,
|
869
|
content text,
|
870
|
author_id integer,
|
871
|
replies_count integer DEFAULT 0 NOT NULL,
|
872
|
last_reply_id integer,
|
873
|
created_on timestamp without time zone NOT NULL,
|
874
|
updated_on timestamp without time zone NOT NULL,
|
875
|
locked boolean DEFAULT false,
|
876
|
sticky integer DEFAULT 0
|
877
|
);
|
878
|
|
879
|
|
880
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
881
|
Il comando era: ALTER TABLE public.messages OWNER TO redmine;
|
882
|
|
883
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
884
|
Il comando era: CREATE SEQUENCE public.messages_id_seq
|
885
|
START WITH 1
|
886
|
INCREMENT BY 1
|
887
|
NO MINVALUE
|
888
|
NO MAXVALUE
|
889
|
CACHE 1;
|
890
|
|
891
|
|
892
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza messages_id_seq
|
893
|
Il comando era: ALTER TABLE public.messages_id_seq OWNER TO redmine;
|
894
|
|
895
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza messages_id_seq
|
896
|
Il comando era: ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id;
|
897
|
|
898
|
|
899
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
900
|
RIGA 1: CREATE TABLE public.news (
|
901
|
^
|
902
|
Il comando era: CREATE TABLE public.news (
|
903
|
id integer NOT NULL,
|
904
|
project_id integer,
|
905
|
title character varying(60) DEFAULT ''::character varying NOT NULL,
|
906
|
summary character varying(255) DEFAULT ''::character varying,
|
907
|
description text,
|
908
|
author_id integer DEFAULT 0 NOT NULL,
|
909
|
created_on timestamp without time zone,
|
910
|
comments_count integer DEFAULT 0 NOT NULL
|
911
|
);
|
912
|
|
913
|
|
914
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
915
|
Il comando era: ALTER TABLE public.news OWNER TO redmine;
|
916
|
|
917
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
918
|
Il comando era: CREATE SEQUENCE public.news_id_seq
|
919
|
START WITH 1
|
920
|
INCREMENT BY 1
|
921
|
NO MINVALUE
|
922
|
NO MAXVALUE
|
923
|
CACHE 1;
|
924
|
|
925
|
|
926
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza news_id_seq
|
927
|
Il comando era: ALTER TABLE public.news_id_seq OWNER TO redmine;
|
928
|
|
929
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza news_id_seq
|
930
|
Il comando era: ALTER SEQUENCE public.news_id_seq OWNED BY public.news.id;
|
931
|
|
932
|
|
933
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
934
|
RIGA 1: CREATE TABLE public.open_id_authentication_associations (
|
935
|
^
|
936
|
Il comando era: CREATE TABLE public.open_id_authentication_associations (
|
937
|
id integer NOT NULL,
|
938
|
issued integer,
|
939
|
lifetime integer,
|
940
|
handle character varying,
|
941
|
assoc_type character varying,
|
942
|
server_url bytea,
|
943
|
secret bytea
|
944
|
);
|
945
|
|
946
|
|
947
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
948
|
Il comando era: ALTER TABLE public.open_id_authentication_associations OWNER TO redmine;
|
949
|
|
950
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
951
|
Il comando era: CREATE SEQUENCE public.open_id_authentication_associations_id_seq
|
952
|
START WITH 1
|
953
|
INCREMENT BY 1
|
954
|
NO MINVALUE
|
955
|
NO MAXVALUE
|
956
|
CACHE 1;
|
957
|
|
958
|
|
959
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations_id_seq" non esiste
|
960
|
Il comando era: ALTER TABLE public.open_id_authentication_associations_id_seq OWNER TO redmine;
|
961
|
|
962
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations_id_seq" non esiste
|
963
|
Il comando era: ALTER SEQUENCE public.open_id_authentication_associations_id_seq OWNED BY public.open_id_authentication_associations.id;
|
964
|
|
965
|
|
966
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
967
|
RIGA 1: CREATE TABLE public.open_id_authentication_nonces (
|
968
|
^
|
969
|
Il comando era: CREATE TABLE public.open_id_authentication_nonces (
|
970
|
id integer NOT NULL,
|
971
|
"timestamp" integer NOT NULL,
|
972
|
server_url character varying,
|
973
|
salt character varying NOT NULL
|
974
|
);
|
975
|
|
976
|
|
977
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
978
|
Il comando era: ALTER TABLE public.open_id_authentication_nonces OWNER TO redmine;
|
979
|
|
980
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
981
|
Il comando era: CREATE SEQUENCE public.open_id_authentication_nonces_id_seq
|
982
|
START WITH 1
|
983
|
INCREMENT BY 1
|
984
|
NO MINVALUE
|
985
|
NO MAXVALUE
|
986
|
CACHE 1;
|
987
|
|
988
|
|
989
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces_id_seq" non esiste
|
990
|
Il comando era: ALTER TABLE public.open_id_authentication_nonces_id_seq OWNER TO redmine;
|
991
|
|
992
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces_id_seq" non esiste
|
993
|
Il comando era: ALTER SEQUENCE public.open_id_authentication_nonces_id_seq OWNED BY public.open_id_authentication_nonces.id;
|
994
|
|
995
|
|
996
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
997
|
RIGA 1: CREATE TABLE public.projects (
|
998
|
^
|
999
|
Il comando era: CREATE TABLE public.projects (
|
1000
|
id integer NOT NULL,
|
1001
|
name character varying DEFAULT ''::character varying NOT NULL,
|
1002
|
description text,
|
1003
|
homepage character varying DEFAULT ''::character varying,
|
1004
|
is_public boolean DEFAULT true NOT NULL,
|
1005
|
parent_id integer,
|
1006
|
created_on timestamp without time zone,
|
1007
|
updated_on timestamp without time zone,
|
1008
|
identifier character varying,
|
1009
|
status integer DEFAULT 1 NOT NULL,
|
1010
|
lft integer,
|
1011
|
rgt integer,
|
1012
|
inherit_members boolean DEFAULT false NOT NULL,
|
1013
|
default_version_id integer,
|
1014
|
default_assigned_to_id integer
|
1015
|
);
|
1016
|
|
1017
|
|
1018
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
1019
|
Il comando era: ALTER TABLE public.projects OWNER TO redmine;
|
1020
|
|
1021
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1022
|
Il comando era: CREATE SEQUENCE public.projects_id_seq
|
1023
|
START WITH 1
|
1024
|
INCREMENT BY 1
|
1025
|
NO MINVALUE
|
1026
|
NO MAXVALUE
|
1027
|
CACHE 1;
|
1028
|
|
1029
|
|
1030
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza projects_id_seq
|
1031
|
Il comando era: ALTER TABLE public.projects_id_seq OWNER TO redmine;
|
1032
|
|
1033
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza projects_id_seq
|
1034
|
Il comando era: ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;
|
1035
|
|
1036
|
|
1037
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1038
|
RIGA 1: CREATE TABLE public.projects_trackers (
|
1039
|
^
|
1040
|
Il comando era: CREATE TABLE public.projects_trackers (
|
1041
|
project_id integer DEFAULT 0 NOT NULL,
|
1042
|
tracker_id integer DEFAULT 0 NOT NULL
|
1043
|
);
|
1044
|
|
1045
|
|
1046
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects_trackers
|
1047
|
Il comando era: ALTER TABLE public.projects_trackers OWNER TO redmine;
|
1048
|
|
1049
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1050
|
RIGA 1: CREATE TABLE public.queries (
|
1051
|
^
|
1052
|
Il comando era: CREATE TABLE public.queries (
|
1053
|
id integer NOT NULL,
|
1054
|
project_id integer,
|
1055
|
name character varying DEFAULT ''::character varying NOT NULL,
|
1056
|
filters text,
|
1057
|
user_id integer DEFAULT 0 NOT NULL,
|
1058
|
column_names text,
|
1059
|
sort_criteria text,
|
1060
|
group_by character varying,
|
1061
|
type character varying,
|
1062
|
visibility integer DEFAULT 0,
|
1063
|
options text
|
1064
|
);
|
1065
|
|
1066
|
|
1067
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
1068
|
Il comando era: ALTER TABLE public.queries OWNER TO redmine;
|
1069
|
|
1070
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1071
|
Il comando era: CREATE SEQUENCE public.queries_id_seq
|
1072
|
START WITH 1
|
1073
|
INCREMENT BY 1
|
1074
|
NO MINVALUE
|
1075
|
NO MAXVALUE
|
1076
|
CACHE 1;
|
1077
|
|
1078
|
|
1079
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza queries_id_seq
|
1080
|
Il comando era: ALTER TABLE public.queries_id_seq OWNER TO redmine;
|
1081
|
|
1082
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza queries_id_seq
|
1083
|
Il comando era: ALTER SEQUENCE public.queries_id_seq OWNED BY public.queries.id;
|
1084
|
|
1085
|
|
1086
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1087
|
RIGA 1: CREATE TABLE public.queries_roles (
|
1088
|
^
|
1089
|
Il comando era: CREATE TABLE public.queries_roles (
|
1090
|
query_id integer NOT NULL,
|
1091
|
role_id integer NOT NULL
|
1092
|
);
|
1093
|
|
1094
|
|
1095
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries_roles
|
1096
|
Il comando era: ALTER TABLE public.queries_roles OWNER TO redmine;
|
1097
|
|
1098
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1099
|
RIGA 1: CREATE TABLE public.repositories (
|
1100
|
^
|
1101
|
Il comando era: CREATE TABLE public.repositories (
|
1102
|
id integer NOT NULL,
|
1103
|
project_id integer DEFAULT 0 NOT NULL,
|
1104
|
url character varying DEFAULT ''::character varying NOT NULL,
|
1105
|
login character varying(60) DEFAULT ''::character varying,
|
1106
|
password character varying DEFAULT ''::character varying,
|
1107
|
root_url character varying(255) DEFAULT ''::character varying,
|
1108
|
type character varying,
|
1109
|
path_encoding character varying(64),
|
1110
|
log_encoding character varying(64),
|
1111
|
extra_info text,
|
1112
|
identifier character varying,
|
1113
|
is_default boolean DEFAULT false,
|
1114
|
created_on timestamp without time zone
|
1115
|
);
|
1116
|
|
1117
|
|
1118
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
1119
|
Il comando era: ALTER TABLE public.repositories OWNER TO redmine;
|
1120
|
|
1121
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1122
|
Il comando era: CREATE SEQUENCE public.repositories_id_seq
|
1123
|
START WITH 1
|
1124
|
INCREMENT BY 1
|
1125
|
NO MINVALUE
|
1126
|
NO MAXVALUE
|
1127
|
CACHE 1;
|
1128
|
|
1129
|
|
1130
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza repositories_id_seq
|
1131
|
Il comando era: ALTER TABLE public.repositories_id_seq OWNER TO redmine;
|
1132
|
|
1133
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza repositories_id_seq
|
1134
|
Il comando era: ALTER SEQUENCE public.repositories_id_seq OWNED BY public.repositories.id;
|
1135
|
|
1136
|
|
1137
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1138
|
RIGA 1: CREATE TABLE public.roles (
|
1139
|
^
|
1140
|
Il comando era: CREATE TABLE public.roles (
|
1141
|
id integer NOT NULL,
|
1142
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
1143
|
"position" integer,
|
1144
|
assignable boolean DEFAULT true,
|
1145
|
builtin integer DEFAULT 0 NOT NULL,
|
1146
|
permissions text,
|
1147
|
issues_visibility character varying(30) DEFAULT 'default'::character varying NOT NULL,
|
1148
|
users_visibility character varying(30) DEFAULT 'all'::character varying NOT NULL,
|
1149
|
time_entries_visibility character varying(30) DEFAULT 'all'::character varying NOT NULL,
|
1150
|
all_roles_managed boolean DEFAULT true NOT NULL,
|
1151
|
settings text
|
1152
|
);
|
1153
|
|
1154
|
|
1155
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles
|
1156
|
Il comando era: ALTER TABLE public.roles OWNER TO redmine;
|
1157
|
|
1158
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1159
|
Il comando era: CREATE SEQUENCE public.roles_id_seq
|
1160
|
START WITH 1
|
1161
|
INCREMENT BY 1
|
1162
|
NO MINVALUE
|
1163
|
NO MAXVALUE
|
1164
|
CACHE 1;
|
1165
|
|
1166
|
|
1167
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza roles_id_seq
|
1168
|
Il comando era: ALTER TABLE public.roles_id_seq OWNER TO redmine;
|
1169
|
|
1170
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza roles_id_seq
|
1171
|
Il comando era: ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id;
|
1172
|
|
1173
|
|
1174
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1175
|
RIGA 1: CREATE TABLE public.roles_managed_roles (
|
1176
|
^
|
1177
|
Il comando era: CREATE TABLE public.roles_managed_roles (
|
1178
|
role_id integer NOT NULL,
|
1179
|
managed_role_id integer NOT NULL
|
1180
|
);
|
1181
|
|
1182
|
|
1183
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles_managed_roles
|
1184
|
Il comando era: ALTER TABLE public.roles_managed_roles OWNER TO redmine;
|
1185
|
|
1186
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1187
|
RIGA 1: CREATE TABLE public.schema_migrations (
|
1188
|
^
|
1189
|
Il comando era: CREATE TABLE public.schema_migrations (
|
1190
|
version character varying NOT NULL
|
1191
|
);
|
1192
|
|
1193
|
|
1194
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella schema_migrations
|
1195
|
Il comando era: ALTER TABLE public.schema_migrations OWNER TO redmine;
|
1196
|
|
1197
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1198
|
RIGA 1: CREATE TABLE public.settings (
|
1199
|
^
|
1200
|
Il comando era: CREATE TABLE public.settings (
|
1201
|
id integer NOT NULL,
|
1202
|
name character varying(255) DEFAULT ''::character varying NOT NULL,
|
1203
|
value text,
|
1204
|
updated_on timestamp without time zone
|
1205
|
);
|
1206
|
|
1207
|
|
1208
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
1209
|
Il comando era: ALTER TABLE public.settings OWNER TO redmine;
|
1210
|
|
1211
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1212
|
Il comando era: CREATE SEQUENCE public.settings_id_seq
|
1213
|
START WITH 1
|
1214
|
INCREMENT BY 1
|
1215
|
NO MINVALUE
|
1216
|
NO MAXVALUE
|
1217
|
CACHE 1;
|
1218
|
|
1219
|
|
1220
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza settings_id_seq
|
1221
|
Il comando era: ALTER TABLE public.settings_id_seq OWNER TO redmine;
|
1222
|
|
1223
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza settings_id_seq
|
1224
|
Il comando era: ALTER SEQUENCE public.settings_id_seq OWNED BY public.settings.id;
|
1225
|
|
1226
|
|
1227
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1228
|
RIGA 1: CREATE TABLE public.time_entries (
|
1229
|
^
|
1230
|
Il comando era: CREATE TABLE public.time_entries (
|
1231
|
id integer NOT NULL,
|
1232
|
project_id integer NOT NULL,
|
1233
|
user_id integer NOT NULL,
|
1234
|
issue_id integer,
|
1235
|
hours double precision NOT NULL,
|
1236
|
comments character varying(1024),
|
1237
|
activity_id integer NOT NULL,
|
1238
|
spent_on date NOT NULL,
|
1239
|
tyear integer NOT NULL,
|
1240
|
tmonth integer NOT NULL,
|
1241
|
tweek integer NOT NULL,
|
1242
|
created_on timestamp without time zone NOT NULL,
|
1243
|
updated_on timestamp without time zone NOT NULL
|
1244
|
);
|
1245
|
|
1246
|
|
1247
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
1248
|
Il comando era: ALTER TABLE public.time_entries OWNER TO redmine;
|
1249
|
|
1250
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1251
|
Il comando era: CREATE SEQUENCE public.time_entries_id_seq
|
1252
|
START WITH 1
|
1253
|
INCREMENT BY 1
|
1254
|
NO MINVALUE
|
1255
|
NO MAXVALUE
|
1256
|
CACHE 1;
|
1257
|
|
1258
|
|
1259
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza time_entries_id_seq
|
1260
|
Il comando era: ALTER TABLE public.time_entries_id_seq OWNER TO redmine;
|
1261
|
|
1262
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza time_entries_id_seq
|
1263
|
Il comando era: ALTER SEQUENCE public.time_entries_id_seq OWNED BY public.time_entries.id;
|
1264
|
|
1265
|
|
1266
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1267
|
RIGA 1: CREATE TABLE public.tokens (
|
1268
|
^
|
1269
|
Il comando era: CREATE TABLE public.tokens (
|
1270
|
id integer NOT NULL,
|
1271
|
user_id integer DEFAULT 0 NOT NULL,
|
1272
|
action character varying(30) DEFAULT ''::character varying NOT NULL,
|
1273
|
value character varying(40) DEFAULT ''::character varying NOT NULL,
|
1274
|
created_on timestamp without time zone NOT NULL,
|
1275
|
updated_on timestamp without time zone
|
1276
|
);
|
1277
|
|
1278
|
|
1279
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
1280
|
Il comando era: ALTER TABLE public.tokens OWNER TO redmine;
|
1281
|
|
1282
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1283
|
Il comando era: CREATE SEQUENCE public.tokens_id_seq
|
1284
|
START WITH 1
|
1285
|
INCREMENT BY 1
|
1286
|
NO MINVALUE
|
1287
|
NO MAXVALUE
|
1288
|
CACHE 1;
|
1289
|
|
1290
|
|
1291
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza tokens_id_seq
|
1292
|
Il comando era: ALTER TABLE public.tokens_id_seq OWNER TO redmine;
|
1293
|
|
1294
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza tokens_id_seq
|
1295
|
Il comando era: ALTER SEQUENCE public.tokens_id_seq OWNED BY public.tokens.id;
|
1296
|
|
1297
|
|
1298
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1299
|
RIGA 1: CREATE TABLE public.trackers (
|
1300
|
^
|
1301
|
Il comando era: CREATE TABLE public.trackers (
|
1302
|
id integer NOT NULL,
|
1303
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
1304
|
is_in_chlog boolean DEFAULT false NOT NULL,
|
1305
|
"position" integer,
|
1306
|
is_in_roadmap boolean DEFAULT true NOT NULL,
|
1307
|
fields_bits integer DEFAULT 0,
|
1308
|
default_status_id integer
|
1309
|
);
|
1310
|
|
1311
|
|
1312
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella trackers
|
1313
|
Il comando era: ALTER TABLE public.trackers OWNER TO redmine;
|
1314
|
|
1315
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1316
|
Il comando era: CREATE SEQUENCE public.trackers_id_seq
|
1317
|
START WITH 1
|
1318
|
INCREMENT BY 1
|
1319
|
NO MINVALUE
|
1320
|
NO MAXVALUE
|
1321
|
CACHE 1;
|
1322
|
|
1323
|
|
1324
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza trackers_id_seq
|
1325
|
Il comando era: ALTER TABLE public.trackers_id_seq OWNER TO redmine;
|
1326
|
|
1327
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza trackers_id_seq
|
1328
|
Il comando era: ALTER SEQUENCE public.trackers_id_seq OWNED BY public.trackers.id;
|
1329
|
|
1330
|
|
1331
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1332
|
RIGA 1: CREATE TABLE public.user_preferences (
|
1333
|
^
|
1334
|
Il comando era: CREATE TABLE public.user_preferences (
|
1335
|
id integer NOT NULL,
|
1336
|
user_id integer DEFAULT 0 NOT NULL,
|
1337
|
others text,
|
1338
|
hide_mail boolean DEFAULT true,
|
1339
|
time_zone character varying
|
1340
|
);
|
1341
|
|
1342
|
|
1343
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
1344
|
Il comando era: ALTER TABLE public.user_preferences OWNER TO redmine;
|
1345
|
|
1346
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1347
|
Il comando era: CREATE SEQUENCE public.user_preferences_id_seq
|
1348
|
START WITH 1
|
1349
|
INCREMENT BY 1
|
1350
|
NO MINVALUE
|
1351
|
NO MAXVALUE
|
1352
|
CACHE 1;
|
1353
|
|
1354
|
|
1355
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza user_preferences_id_seq
|
1356
|
Il comando era: ALTER TABLE public.user_preferences_id_seq OWNER TO redmine;
|
1357
|
|
1358
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza user_preferences_id_seq
|
1359
|
Il comando era: ALTER SEQUENCE public.user_preferences_id_seq OWNED BY public.user_preferences.id;
|
1360
|
|
1361
|
|
1362
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1363
|
RIGA 1: CREATE TABLE public.users (
|
1364
|
^
|
1365
|
Il comando era: CREATE TABLE public.users (
|
1366
|
id integer NOT NULL,
|
1367
|
login character varying DEFAULT ''::character varying NOT NULL,
|
1368
|
hashed_password character varying(40) DEFAULT ''::character varying NOT NULL,
|
1369
|
firstname character varying(30) DEFAULT ''::character varying NOT NULL,
|
1370
|
lastname character varying(255) DEFAULT ''::character varying NOT NULL,
|
1371
|
admin boolean DEFAULT false NOT NULL,
|
1372
|
status integer DEFAULT 1 NOT NULL,
|
1373
|
last_login_on timestamp without time zone,
|
1374
|
language character varying(5) DEFAULT ''::character varying,
|
1375
|
auth_source_id integer,
|
1376
|
created_on timestamp without time zone,
|
1377
|
updated_on timestamp without time zone,
|
1378
|
type character varying,
|
1379
|
identity_url character varying,
|
1380
|
mail_notification character varying DEFAULT ''::character varying NOT NULL,
|
1381
|
salt character varying(64),
|
1382
|
must_change_passwd boolean DEFAULT false NOT NULL,
|
1383
|
passwd_changed_on timestamp without time zone
|
1384
|
);
|
1385
|
|
1386
|
|
1387
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
1388
|
Il comando era: ALTER TABLE public.users OWNER TO redmine;
|
1389
|
|
1390
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1391
|
Il comando era: CREATE SEQUENCE public.users_id_seq
|
1392
|
START WITH 1
|
1393
|
INCREMENT BY 1
|
1394
|
NO MINVALUE
|
1395
|
NO MAXVALUE
|
1396
|
CACHE 1;
|
1397
|
|
1398
|
|
1399
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza users_id_seq
|
1400
|
Il comando era: ALTER TABLE public.users_id_seq OWNER TO redmine;
|
1401
|
|
1402
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza users_id_seq
|
1403
|
Il comando era: ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
|
1404
|
|
1405
|
|
1406
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1407
|
RIGA 1: CREATE TABLE public.versions (
|
1408
|
^
|
1409
|
Il comando era: CREATE TABLE public.versions (
|
1410
|
id integer NOT NULL,
|
1411
|
project_id integer DEFAULT 0 NOT NULL,
|
1412
|
name character varying DEFAULT ''::character varying NOT NULL,
|
1413
|
description character varying DEFAULT ''::character varying,
|
1414
|
effective_date date,
|
1415
|
created_on timestamp without time zone,
|
1416
|
updated_on timestamp without time zone,
|
1417
|
wiki_page_title character varying,
|
1418
|
status character varying DEFAULT 'open'::character varying,
|
1419
|
sharing character varying DEFAULT 'none'::character varying NOT NULL
|
1420
|
);
|
1421
|
|
1422
|
|
1423
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
1424
|
Il comando era: ALTER TABLE public.versions OWNER TO redmine;
|
1425
|
|
1426
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1427
|
Il comando era: CREATE SEQUENCE public.versions_id_seq
|
1428
|
START WITH 1
|
1429
|
INCREMENT BY 1
|
1430
|
NO MINVALUE
|
1431
|
NO MAXVALUE
|
1432
|
CACHE 1;
|
1433
|
|
1434
|
|
1435
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza versions_id_seq
|
1436
|
Il comando era: ALTER TABLE public.versions_id_seq OWNER TO redmine;
|
1437
|
|
1438
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza versions_id_seq
|
1439
|
Il comando era: ALTER SEQUENCE public.versions_id_seq OWNED BY public.versions.id;
|
1440
|
|
1441
|
|
1442
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1443
|
RIGA 1: CREATE TABLE public.view_customizes (
|
1444
|
^
|
1445
|
Il comando era: CREATE TABLE public.view_customizes (
|
1446
|
id integer NOT NULL,
|
1447
|
path_pattern character varying NOT NULL,
|
1448
|
code text NOT NULL,
|
1449
|
is_enabled boolean DEFAULT true NOT NULL,
|
1450
|
is_private boolean DEFAULT false NOT NULL,
|
1451
|
author_id integer DEFAULT 0 NOT NULL,
|
1452
|
insertion_position character varying DEFAULT 'html_head'::character varying NOT NULL,
|
1453
|
customize_type character varying DEFAULT 'javascript'::character varying NOT NULL,
|
1454
|
comments character varying
|
1455
|
);
|
1456
|
|
1457
|
|
1458
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella view_customizes
|
1459
|
Il comando era: ALTER TABLE public.view_customizes OWNER TO redmine;
|
1460
|
|
1461
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1462
|
Il comando era: CREATE SEQUENCE public.view_customizes_id_seq
|
1463
|
START WITH 1
|
1464
|
INCREMENT BY 1
|
1465
|
NO MINVALUE
|
1466
|
NO MAXVALUE
|
1467
|
CACHE 1;
|
1468
|
|
1469
|
|
1470
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza view_customizes_id_seq
|
1471
|
Il comando era: ALTER TABLE public.view_customizes_id_seq OWNER TO redmine;
|
1472
|
|
1473
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza view_customizes_id_seq
|
1474
|
Il comando era: ALTER SEQUENCE public.view_customizes_id_seq OWNED BY public.view_customizes.id;
|
1475
|
|
1476
|
|
1477
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1478
|
RIGA 1: CREATE TABLE public.watchers (
|
1479
|
^
|
1480
|
Il comando era: CREATE TABLE public.watchers (
|
1481
|
id integer NOT NULL,
|
1482
|
watchable_type character varying DEFAULT ''::character varying NOT NULL,
|
1483
|
watchable_id integer DEFAULT 0 NOT NULL,
|
1484
|
user_id integer
|
1485
|
);
|
1486
|
|
1487
|
|
1488
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
1489
|
Il comando era: ALTER TABLE public.watchers OWNER TO redmine;
|
1490
|
|
1491
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1492
|
Il comando era: CREATE SEQUENCE public.watchers_id_seq
|
1493
|
START WITH 1
|
1494
|
INCREMENT BY 1
|
1495
|
NO MINVALUE
|
1496
|
NO MAXVALUE
|
1497
|
CACHE 1;
|
1498
|
|
1499
|
|
1500
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza watchers_id_seq
|
1501
|
Il comando era: ALTER TABLE public.watchers_id_seq OWNER TO redmine;
|
1502
|
|
1503
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza watchers_id_seq
|
1504
|
Il comando era: ALTER SEQUENCE public.watchers_id_seq OWNED BY public.watchers.id;
|
1505
|
|
1506
|
|
1507
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1508
|
RIGA 1: CREATE TABLE public.wiki_content_versions (
|
1509
|
^
|
1510
|
Il comando era: CREATE TABLE public.wiki_content_versions (
|
1511
|
id integer NOT NULL,
|
1512
|
wiki_content_id integer NOT NULL,
|
1513
|
page_id integer NOT NULL,
|
1514
|
author_id integer,
|
1515
|
data bytea,
|
1516
|
compression character varying(6) DEFAULT ''::character varying,
|
1517
|
comments character varying(1024) DEFAULT ''::character varying,
|
1518
|
updated_on timestamp without time zone NOT NULL,
|
1519
|
version integer NOT NULL
|
1520
|
);
|
1521
|
|
1522
|
|
1523
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
1524
|
Il comando era: ALTER TABLE public.wiki_content_versions OWNER TO redmine;
|
1525
|
|
1526
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1527
|
Il comando era: CREATE SEQUENCE public.wiki_content_versions_id_seq
|
1528
|
START WITH 1
|
1529
|
INCREMENT BY 1
|
1530
|
NO MINVALUE
|
1531
|
NO MAXVALUE
|
1532
|
CACHE 1;
|
1533
|
|
1534
|
|
1535
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_content_versions_id_seq
|
1536
|
Il comando era: ALTER TABLE public.wiki_content_versions_id_seq OWNER TO redmine;
|
1537
|
|
1538
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_content_versions_id_seq
|
1539
|
Il comando era: ALTER SEQUENCE public.wiki_content_versions_id_seq OWNED BY public.wiki_content_versions.id;
|
1540
|
|
1541
|
|
1542
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1543
|
RIGA 1: CREATE TABLE public.wiki_contents (
|
1544
|
^
|
1545
|
Il comando era: CREATE TABLE public.wiki_contents (
|
1546
|
id integer NOT NULL,
|
1547
|
page_id integer NOT NULL,
|
1548
|
author_id integer,
|
1549
|
text text,
|
1550
|
comments character varying(1024) DEFAULT ''::character varying,
|
1551
|
updated_on timestamp without time zone NOT NULL,
|
1552
|
version integer NOT NULL
|
1553
|
);
|
1554
|
|
1555
|
|
1556
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
1557
|
Il comando era: ALTER TABLE public.wiki_contents OWNER TO redmine;
|
1558
|
|
1559
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1560
|
Il comando era: CREATE SEQUENCE public.wiki_contents_id_seq
|
1561
|
START WITH 1
|
1562
|
INCREMENT BY 1
|
1563
|
NO MINVALUE
|
1564
|
NO MAXVALUE
|
1565
|
CACHE 1;
|
1566
|
|
1567
|
|
1568
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_contents_id_seq
|
1569
|
Il comando era: ALTER TABLE public.wiki_contents_id_seq OWNER TO redmine;
|
1570
|
|
1571
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_contents_id_seq
|
1572
|
Il comando era: ALTER SEQUENCE public.wiki_contents_id_seq OWNED BY public.wiki_contents.id;
|
1573
|
|
1574
|
|
1575
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1576
|
RIGA 1: CREATE TABLE public.wiki_pages (
|
1577
|
^
|
1578
|
Il comando era: CREATE TABLE public.wiki_pages (
|
1579
|
id integer NOT NULL,
|
1580
|
wiki_id integer NOT NULL,
|
1581
|
title character varying(255) NOT NULL,
|
1582
|
created_on timestamp without time zone NOT NULL,
|
1583
|
protected boolean DEFAULT false NOT NULL,
|
1584
|
parent_id integer
|
1585
|
);
|
1586
|
|
1587
|
|
1588
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
1589
|
Il comando era: ALTER TABLE public.wiki_pages OWNER TO redmine;
|
1590
|
|
1591
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1592
|
Il comando era: CREATE SEQUENCE public.wiki_pages_id_seq
|
1593
|
START WITH 1
|
1594
|
INCREMENT BY 1
|
1595
|
NO MINVALUE
|
1596
|
NO MAXVALUE
|
1597
|
CACHE 1;
|
1598
|
|
1599
|
|
1600
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_pages_id_seq
|
1601
|
Il comando era: ALTER TABLE public.wiki_pages_id_seq OWNER TO redmine;
|
1602
|
|
1603
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_pages_id_seq
|
1604
|
Il comando era: ALTER SEQUENCE public.wiki_pages_id_seq OWNED BY public.wiki_pages.id;
|
1605
|
|
1606
|
|
1607
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1608
|
RIGA 1: CREATE TABLE public.wiki_redirects (
|
1609
|
^
|
1610
|
Il comando era: CREATE TABLE public.wiki_redirects (
|
1611
|
id integer NOT NULL,
|
1612
|
wiki_id integer NOT NULL,
|
1613
|
title character varying,
|
1614
|
redirects_to character varying,
|
1615
|
created_on timestamp without time zone NOT NULL,
|
1616
|
redirects_to_wiki_id integer NOT NULL
|
1617
|
);
|
1618
|
|
1619
|
|
1620
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
1621
|
Il comando era: ALTER TABLE public.wiki_redirects OWNER TO redmine;
|
1622
|
|
1623
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1624
|
Il comando era: CREATE SEQUENCE public.wiki_redirects_id_seq
|
1625
|
START WITH 1
|
1626
|
INCREMENT BY 1
|
1627
|
NO MINVALUE
|
1628
|
NO MAXVALUE
|
1629
|
CACHE 1;
|
1630
|
|
1631
|
|
1632
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_redirects_id_seq
|
1633
|
Il comando era: ALTER TABLE public.wiki_redirects_id_seq OWNER TO redmine;
|
1634
|
|
1635
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_redirects_id_seq
|
1636
|
Il comando era: ALTER SEQUENCE public.wiki_redirects_id_seq OWNED BY public.wiki_redirects.id;
|
1637
|
|
1638
|
|
1639
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1640
|
RIGA 1: CREATE TABLE public.wikis (
|
1641
|
^
|
1642
|
Il comando era: CREATE TABLE public.wikis (
|
1643
|
id integer NOT NULL,
|
1644
|
project_id integer NOT NULL,
|
1645
|
start_page character varying(255) NOT NULL,
|
1646
|
status integer DEFAULT 1 NOT NULL
|
1647
|
);
|
1648
|
|
1649
|
|
1650
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
1651
|
Il comando era: ALTER TABLE public.wikis OWNER TO redmine;
|
1652
|
|
1653
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1654
|
Il comando era: CREATE SEQUENCE public.wikis_id_seq
|
1655
|
START WITH 1
|
1656
|
INCREMENT BY 1
|
1657
|
NO MINVALUE
|
1658
|
NO MAXVALUE
|
1659
|
CACHE 1;
|
1660
|
|
1661
|
|
1662
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wikis_id_seq
|
1663
|
Il comando era: ALTER TABLE public.wikis_id_seq OWNER TO redmine;
|
1664
|
|
1665
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wikis_id_seq
|
1666
|
Il comando era: ALTER SEQUENCE public.wikis_id_seq OWNED BY public.wikis.id;
|
1667
|
|
1668
|
|
1669
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1670
|
RIGA 1: CREATE TABLE public.workflows (
|
1671
|
^
|
1672
|
Il comando era: CREATE TABLE public.workflows (
|
1673
|
id integer NOT NULL,
|
1674
|
tracker_id integer DEFAULT 0 NOT NULL,
|
1675
|
old_status_id integer DEFAULT 0 NOT NULL,
|
1676
|
new_status_id integer DEFAULT 0 NOT NULL,
|
1677
|
role_id integer DEFAULT 0 NOT NULL,
|
1678
|
assignee boolean DEFAULT false NOT NULL,
|
1679
|
author boolean DEFAULT false NOT NULL,
|
1680
|
type character varying(30),
|
1681
|
field_name character varying(30),
|
1682
|
rule character varying(30)
|
1683
|
);
|
1684
|
|
1685
|
|
1686
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
1687
|
Il comando era: ALTER TABLE public.workflows OWNER TO redmine;
|
1688
|
|
1689
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
1690
|
Il comando era: CREATE SEQUENCE public.workflows_id_seq
|
1691
|
START WITH 1
|
1692
|
INCREMENT BY 1
|
1693
|
NO MINVALUE
|
1694
|
NO MAXVALUE
|
1695
|
CACHE 1;
|
1696
|
|
1697
|
|
1698
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza workflows_id_seq
|
1699
|
Il comando era: ALTER TABLE public.workflows_id_seq OWNER TO redmine;
|
1700
|
|
1701
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza workflows_id_seq
|
1702
|
Il comando era: ALTER SEQUENCE public.workflows_id_seq OWNED BY public.workflows.id;
|
1703
|
|
1704
|
|
1705
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
1706
|
Il comando era: ALTER TABLE ONLY public.attachments ALTER COLUMN id SET DEFAULT nextval('public.attachments_id_seq'::regclass);
|
1707
|
|
1708
|
|
1709
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
1710
|
Il comando era: ALTER TABLE ONLY public.auth_sources ALTER COLUMN id SET DEFAULT nextval('public.auth_sources_id_seq'::regclass);
|
1711
|
|
1712
|
|
1713
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
1714
|
Il comando era: ALTER TABLE ONLY public.boards ALTER COLUMN id SET DEFAULT nextval('public.boards_id_seq'::regclass);
|
1715
|
|
1716
|
|
1717
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
1718
|
Il comando era: ALTER TABLE ONLY public.changes ALTER COLUMN id SET DEFAULT nextval('public.changes_id_seq'::regclass);
|
1719
|
|
1720
|
|
1721
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
1722
|
Il comando era: ALTER TABLE ONLY public.changesets ALTER COLUMN id SET DEFAULT nextval('public.changesets_id_seq'::regclass);
|
1723
|
|
1724
|
|
1725
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
1726
|
Il comando era: ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);
|
1727
|
|
1728
|
|
1729
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_field_enumerations Il comando era: ALTER TABLE ONLY public.custom_field_enumerations ALTER COLUMN id SET DEFAULT nextval('public.custom_field_enumerations_id_seq'::regclass);
|
1730
|
|
1731
|
|
1732
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
1733
|
Il comando era: ALTER TABLE ONLY public.custom_fields ALTER COLUMN id SET DEFAULT nextval('public.custom_fields_id_seq'::regclass);
|
1734
|
|
1735
|
|
1736
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
1737
|
Il comando era: ALTER TABLE ONLY public.custom_values ALTER COLUMN id SET DEFAULT nextval('public.custom_values_id_seq'::regclass);
|
1738
|
|
1739
|
|
1740
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
1741
|
Il comando era: ALTER TABLE ONLY public.documents ALTER COLUMN id SET DEFAULT nextval('public.documents_id_seq'::regclass);
|
1742
|
|
1743
|
|
1744
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
1745
|
Il comando era: ALTER TABLE ONLY public.email_addresses ALTER COLUMN id SET DEFAULT nextval('public.email_addresses_id_seq'::regclass);
|
1746
|
|
1747
|
|
1748
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
1749
|
Il comando era: ALTER TABLE ONLY public.enabled_modules ALTER COLUMN id SET DEFAULT nextval('public.enabled_modules_id_seq'::regclass);
|
1750
|
|
1751
|
|
1752
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
1753
|
Il comando era: ALTER TABLE ONLY public.enumerations ALTER COLUMN id SET DEFAULT nextval('public.enumerations_id_seq'::regclass);
|
1754
|
|
1755
|
|
1756
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella import_items
|
1757
|
Il comando era: ALTER TABLE ONLY public.import_items ALTER COLUMN id SET DEFAULT nextval('public.import_items_id_seq'::regclass);
|
1758
|
|
1759
|
|
1760
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella imports
|
1761
|
Il comando era: ALTER TABLE ONLY public.imports ALTER COLUMN id SET DEFAULT nextval('public.imports_id_seq'::regclass);
|
1762
|
|
1763
|
|
1764
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
1765
|
Il comando era: ALTER TABLE ONLY public.issue_categories ALTER COLUMN id SET DEFAULT nextval('public.issue_categories_id_seq'::regclass);
|
1766
|
|
1767
|
|
1768
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
1769
|
Il comando era: ALTER TABLE ONLY public.issue_relations ALTER COLUMN id SET DEFAULT nextval('public.issue_relations_id_seq'::regclass);
|
1770
|
|
1771
|
|
1772
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
1773
|
Il comando era: ALTER TABLE ONLY public.issue_statuses ALTER COLUMN id SET DEFAULT nextval('public.issue_statuses_id_seq'::regclass);
|
1774
|
|
1775
|
|
1776
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
1777
|
Il comando era: ALTER TABLE ONLY public.issues ALTER COLUMN id SET DEFAULT nextval('public.issues_id_seq'::regclass);
|
1778
|
|
1779
|
|
1780
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
1781
|
Il comando era: ALTER TABLE ONLY public.journal_details ALTER COLUMN id SET DEFAULT nextval('public.journal_details_id_seq'::regclass);
|
1782
|
|
1783
|
|
1784
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
1785
|
Il comando era: ALTER TABLE ONLY public.journals ALTER COLUMN id SET DEFAULT nextval('public.journals_id_seq'::regclass);
|
1786
|
|
1787
|
|
1788
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
1789
|
Il comando era: ALTER TABLE ONLY public.member_roles ALTER COLUMN id SET DEFAULT nextval('public.member_roles_id_seq'::regclass);
|
1790
|
|
1791
|
|
1792
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
1793
|
Il comando era: ALTER TABLE ONLY public.members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass);
|
1794
|
|
1795
|
|
1796
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
1797
|
Il comando era: ALTER TABLE ONLY public.messages ALTER COLUMN id SET DEFAULT nextval('public.messages_id_seq'::regclass);
|
1798
|
|
1799
|
|
1800
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
1801
|
Il comando era: ALTER TABLE ONLY public.news ALTER COLUMN id SET DEFAULT nextval('public.news_id_seq'::regclass);
|
1802
|
|
1803
|
|
1804
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
1805
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_associations ALTER COLUMN id SET DEFAULT nextval('public.open_id_authentication_associations_id_seq'::regclass);
|
1806
|
|
1807
|
|
1808
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
1809
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_nonces ALTER COLUMN id SET DEFAULT nextval('public.open_id_authentication_nonces_id_seq'::regclass);
|
1810
|
|
1811
|
|
1812
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
1813
|
Il comando era: ALTER TABLE ONLY public.projects ALTER COLUMN id SET DEFAULT nextval('public.projects_id_seq'::regclass);
|
1814
|
|
1815
|
|
1816
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
1817
|
Il comando era: ALTER TABLE ONLY public.queries ALTER COLUMN id SET DEFAULT nextval('public.queries_id_seq'::regclass);
|
1818
|
|
1819
|
|
1820
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
1821
|
Il comando era: ALTER TABLE ONLY public.repositories ALTER COLUMN id SET DEFAULT nextval('public.repositories_id_seq'::regclass);
|
1822
|
|
1823
|
|
1824
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles
|
1825
|
Il comando era: ALTER TABLE ONLY public.roles ALTER COLUMN id SET DEFAULT nextval('public.roles_id_seq'::regclass);
|
1826
|
|
1827
|
|
1828
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
1829
|
Il comando era: ALTER TABLE ONLY public.settings ALTER COLUMN id SET DEFAULT nextval('public.settings_id_seq'::regclass);
|
1830
|
|
1831
|
|
1832
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
1833
|
Il comando era: ALTER TABLE ONLY public.time_entries ALTER COLUMN id SET DEFAULT nextval('public.time_entries_id_seq'::regclass);
|
1834
|
|
1835
|
|
1836
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
1837
|
Il comando era: ALTER TABLE ONLY public.tokens ALTER COLUMN id SET DEFAULT nextval('public.tokens_id_seq'::regclass);
|
1838
|
|
1839
|
|
1840
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella trackers
|
1841
|
Il comando era: ALTER TABLE ONLY public.trackers ALTER COLUMN id SET DEFAULT nextval('public.trackers_id_seq'::regclass);
|
1842
|
|
1843
|
|
1844
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
1845
|
Il comando era: ALTER TABLE ONLY public.user_preferences ALTER COLUMN id SET DEFAULT nextval('public.user_preferences_id_seq'::regclass);
|
1846
|
|
1847
|
|
1848
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
1849
|
Il comando era: ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
|
1850
|
|
1851
|
|
1852
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
1853
|
Il comando era: ALTER TABLE ONLY public.versions ALTER COLUMN id SET DEFAULT nextval('public.versions_id_seq'::regclass);
|
1854
|
|
1855
|
|
1856
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella view_customizes
|
1857
|
Il comando era: ALTER TABLE ONLY public.view_customizes ALTER COLUMN id SET DEFAULT nextval('public.view_customizes_id_seq'::regclass);
|
1858
|
|
1859
|
|
1860
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
1861
|
Il comando era: ALTER TABLE ONLY public.watchers ALTER COLUMN id SET DEFAULT nextval('public.watchers_id_seq'::regclass);
|
1862
|
|
1863
|
|
1864
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
1865
|
Il comando era: ALTER TABLE ONLY public.wiki_content_versions ALTER COLUMN id SET DEFAULT nextval('public.wiki_content_versions_id_seq'::regclass);
|
1866
|
|
1867
|
|
1868
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
1869
|
Il comando era: ALTER TABLE ONLY public.wiki_contents ALTER COLUMN id SET DEFAULT nextval('public.wiki_contents_id_seq'::regclass);
|
1870
|
|
1871
|
|
1872
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
1873
|
Il comando era: ALTER TABLE ONLY public.wiki_pages ALTER COLUMN id SET DEFAULT nextval('public.wiki_pages_id_seq'::regclass);
|
1874
|
|
1875
|
|
1876
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
1877
|
Il comando era: ALTER TABLE ONLY public.wiki_redirects ALTER COLUMN id SET DEFAULT nextval('public.wiki_redirects_id_seq'::regclass);
|
1878
|
|
1879
|
|
1880
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
1881
|
Il comando era: ALTER TABLE ONLY public.wikis ALTER COLUMN id SET DEFAULT nextval('public.wikis_id_seq'::regclass);
|
1882
|
|
1883
|
|
1884
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
1885
|
Il comando era: ALTER TABLE ONLY public.workflows ALTER COLUMN id SET DEFAULT nextval('public.workflows_id_seq'::regclass);
|
1886
|
|
1887
|
|
1888
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella attachments
|
1889
|
Il comando era: COPY public.attachments (id, container_id, container_type, filename, disk_filename, filesize, content_type, digest, downloads, author_id, created_on, description, disk_directory) FROM stdin;
|
1890
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella auth_sources
|
1891
|
Il comando era: COPY public.auth_sources (id, type, name, host, port, account, account_password, base_dn, attr_login, attr_firstname, attr_lastname, attr_mail, onthefly_register, tls, filter, timeout) FROM stdin;
|
1892
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella boards
|
1893
|
Il comando era: COPY public.boards (id, project_id, name, description, "position", topics_count, messages_count, last_message_id, parent_id) FROM stdin;
|
1894
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changes
|
1895
|
Il comando era: COPY public.changes (id, changeset_id, action, path, from_path, from_revision, revision, branch) FROM stdin;
|
1896
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changeset_parents
|
1897
|
Il comando era: COPY public.changeset_parents (changeset_id, parent_id) FROM stdin;
|
1898
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changesets
|
1899
|
Il comando era: COPY public.changesets (id, repository_id, revision, committer, committed_on, comments, commit_date, scmid, user_id) FROM stdin;
|
1900
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changesets_issues
|
1901
|
Il comando era: COPY public.changesets_issues (changeset_id, issue_id) FROM stdin;
|
1902
|
pg_restore: errore: could not execute query: ERRORE: la colonna "comments" della relazione "comments" non esiste
|
1903
|
Il comando era: COPY public.comments (id, commented_type, commented_id, author_id, comments, created_on, updated_on) FROM stdin;
|
1904
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_field_enumerations
|
1905
|
Il comando era: COPY public.custom_field_enumerations (id, custom_field_id, name, active, "position") FROM stdin;
|
1906
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields
|
1907
|
Il comando era: COPY public.custom_fields (id, type, name, field_format, possible_values, regexp, min_length, max_length, is_required, is_for_all, is_filter, "position", searchable, default_value, editable, visible, multiple, format_store, description) FROM stdin;
|
1908
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields_projects
|
1909
|
Il comando era: COPY public.custom_fields_projects (custom_field_id, project_id) FROM stdin;
|
1910
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields_roles
|
1911
|
Il comando era: COPY public.custom_fields_roles (custom_field_id, role_id) FROM stdin;
|
1912
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields_trackers
|
1913
|
Il comando era: COPY public.custom_fields_trackers (custom_field_id, tracker_id) FROM stdin;
|
1914
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_values
|
1915
|
Il comando era: COPY public.custom_values (id, customized_type, customized_id, custom_field_id, value) FROM stdin;
|
1916
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella documents
|
1917
|
Il comando era: COPY public.documents (id, project_id, category_id, title, description, created_on) FROM stdin;
|
1918
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella email_addresses
|
1919
|
Il comando era: COPY public.email_addresses (id, user_id, address, is_default, notify, created_on, updated_on) FROM stdin;
|
1920
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella enabled_modules
|
1921
|
Il comando era: COPY public.enabled_modules (id, project_id, name) FROM stdin;
|
1922
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella enumerations
|
1923
|
Il comando era: COPY public.enumerations (id, name, "position", is_default, type, active, project_id, parent_id, position_name) FROM stdin;
|
1924
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella groups_users
|
1925
|
Il comando era: COPY public.groups_users (group_id, user_id) FROM stdin;
|
1926
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella import_items
|
1927
|
Il comando era: COPY public.import_items (id, import_id, "position", obj_id, message) FROM stdin;
|
1928
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella imports
|
1929
|
Il comando era: COPY public.imports (id, type, user_id, filename, settings, total_items, finished, created_at, updated_at) FROM stdin;
|
1930
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issue_categories
|
1931
|
Il comando era: COPY public.issue_categories (id, project_id, name, assigned_to_id) FROM stdin;
|
1932
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issue_relations
|
1933
|
Il comando era: COPY public.issue_relations (id, issue_from_id, issue_to_id, relation_type, delay) FROM stdin;
|
1934
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issue_statuses
|
1935
|
Il comando era: COPY public.issue_statuses (id, name, is_closed, "position", default_done_ratio) FROM stdin;
|
1936
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issues
|
1937
|
Il comando era: COPY public.issues (id, tracker_id, project_id, subject, description, due_date, category_id, status_id, assigned_to_id, priority_id, fixed_version_id, author_id, lock_version, created_on, updated_on, start_date, done_ratio, estimated_hours, parent_id, root_id, lft, rgt, is_private, closed_on) FROM stdin;
|
1938
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella journal_details
|
1939
|
Il comando era: COPY public.journal_details (id, journal_id, property, prop_key, old_value, value) FROM stdin;
|
1940
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella journals
|
1941
|
Il comando era: COPY public.journals (id, journalized_id, journalized_type, user_id, notes, created_on, private_notes) FROM stdin;
|
1942
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella member_roles
|
1943
|
Il comando era: COPY public.member_roles (id, member_id, role_id, inherited_from) FROM stdin;
|
1944
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella members
|
1945
|
Il comando era: COPY public.members (id, user_id, project_id, created_on, mail_notification) FROM stdin;
|
1946
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella messages
|
1947
|
Il comando era: COPY public.messages (id, board_id, parent_id, subject, content, author_id, replies_count, last_reply_id, created_on, updated_on, locked, sticky) FROM stdin;
|
1948
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella news
|
1949
|
Il comando era: COPY public.news (id, project_id, title, summary, description, author_id, created_on, comments_count) FROM stdin;
|
1950
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
1951
|
Il comando era: COPY public.open_id_authentication_associations (id, issued, lifetime, handle, assoc_type, server_url, secret) FROM stdin;
|
1952
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
1953
|
Il comando era: COPY public.open_id_authentication_nonces (id, "timestamp", server_url, salt) FROM stdin;
|
1954
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella projects
|
1955
|
Il comando era: COPY public.projects (id, name, description, homepage, is_public, parent_id, created_on, updated_on, identifier, status, lft, rgt, inherit_members, default_version_id, default_assigned_to_id) FROM stdin;
|
1956
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella projects_trackers
|
1957
|
Il comando era: COPY public.projects_trackers (project_id, tracker_id) FROM stdin;
|
1958
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella queries
|
1959
|
Il comando era: COPY public.queries (id, project_id, name, filters, user_id, column_names, sort_criteria, group_by, type, visibility, options) FROM stdin;
|
1960
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella queries_roles
|
1961
|
Il comando era: COPY public.queries_roles (query_id, role_id) FROM stdin;
|
1962
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella repositories
|
1963
|
Il comando era: COPY public.repositories (id, project_id, url, login, password, root_url, type, path_encoding, log_encoding, extra_info, identifier, is_default, created_on) FROM stdin;
|
1964
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella roles
|
1965
|
Il comando era: COPY public.roles (id, name, "position", assignable, builtin, permissions, issues_visibility, users_visibility, time_entries_visibility, all_roles_managed, settings) FROM stdin;
|
1966
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella roles_managed_roles
|
1967
|
Il comando era: COPY public.roles_managed_roles (role_id, managed_role_id) FROM stdin;
|
1968
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella schema_migrations
|
1969
|
Il comando era: COPY public.schema_migrations (version) FROM stdin;
|
1970
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella settings
|
1971
|
Il comando era: COPY public.settings (id, name, value, updated_on) FROM stdin;
|
1972
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella time_entries
|
1973
|
Il comando era: COPY public.time_entries (id, project_id, user_id, issue_id, hours, comments, activity_id, spent_on, tyear, tmonth, tweek, created_on, updated_on) FROM stdin;
|
1974
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella tokens
|
1975
|
Il comando era: COPY public.tokens (id, user_id, action, value, created_on, updated_on) FROM stdin;
|
1976
|
pg_restore: errore: could not execute query: ERRORE: la colonna "is_in_chlog" della relazione "trackers" non esiste
|
1977
|
Il comando era: COPY public.trackers (id, name, is_in_chlog, "position", is_in_roadmap, fields_bits, default_status_id) FROM stdin;
|
1978
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella user_preferences
|
1979
|
Il comando era: COPY public.user_preferences (id, user_id, others, hide_mail, time_zone) FROM stdin;
|
1980
|
pg_restore: errore: could not execute query: ERRORE: la colonna "identity_url" della relazione "users" non esiste
|
1981
|
Il comando era: COPY public.users (id, login, hashed_password, firstname, lastname, admin, status, last_login_on, language, auth_source_id, created_on, updated_on, type, identity_url, mail_notification, salt, must_change_passwd, passwd_changed_on) FROM stdin;
|
1982
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella versions
|
1983
|
Il comando era: COPY public.versions (id, project_id, name, description, effective_date, created_on, updated_on, wiki_page_title, status, sharing) FROM stdin;
|
1984
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella view_customizes
|
1985
|
Il comando era: COPY public.view_customizes (id, path_pattern, code, is_enabled, is_private, author_id, insertion_position, customize_type, comments) FROM stdin;
|
1986
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella watchers
|
1987
|
Il comando era: COPY public.watchers (id, watchable_type, watchable_id, user_id) FROM stdin;
|
1988
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_content_versions
|
1989
|
Il comando era: COPY public.wiki_content_versions (id, wiki_content_id, page_id, author_id, data, compression, comments, updated_on, version) FROM stdin;
|
1990
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_contents
|
1991
|
Il comando era: COPY public.wiki_contents (id, page_id, author_id, text, comments, updated_on, version) FROM stdin;
|
1992
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_pages
|
1993
|
Il comando era: COPY public.wiki_pages (id, wiki_id, title, created_on, protected, parent_id) FROM stdin;
|
1994
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_redirects
|
1995
|
Il comando era: COPY public.wiki_redirects (id, wiki_id, title, redirects_to, created_on, redirects_to_wiki_id) FROM stdin;
|
1996
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wikis
|
1997
|
Il comando era: COPY public.wikis (id, project_id, start_page, status) FROM stdin;
|
1998
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella workflows
|
1999
|
Il comando era: COPY public.workflows (id, tracker_id, old_status_id, new_status_id, role_id, assignee, author, type, field_name, rule) FROM stdin;
|
2000
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza attachments_id_seq
|
2001
|
Il comando era: SELECT pg_catalog.setval('public.attachments_id_seq', 20698, true);
|
2002
|
|
2003
|
|
2004
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza auth_sources_id_seq
|
2005
|
Il comando era: SELECT pg_catalog.setval('public.auth_sources_id_seq', 1, true);
|
2006
|
|
2007
|
|
2008
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza boards_id_seq
|
2009
|
Il comando era: SELECT pg_catalog.setval('public.boards_id_seq', 1, false);
|
2010
|
|
2011
|
|
2012
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza changes_id_seq
|
2013
|
Il comando era: SELECT pg_catalog.setval('public.changes_id_seq', 1, false);
|
2014
|
|
2015
|
|
2016
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza changesets_id_seq
|
2017
|
Il comando era: SELECT pg_catalog.setval('public.changesets_id_seq', 1, false);
|
2018
|
|
2019
|
|
2020
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza comments_id_seq
|
2021
|
Il comando era: SELECT pg_catalog.setval('public.comments_id_seq', 1, false);
|
2022
|
|
2023
|
|
2024
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza custom_field_enumerations_id_seq
|
2025
|
Il comando era: SELECT pg_catalog.setval('public.custom_field_enumerations_id_seq', 1, false);
|
2026
|
|
2027
|
|
2028
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza custom_fields_id_seq
|
2029
|
Il comando era: SELECT pg_catalog.setval('public.custom_fields_id_seq', 15, true);
|
2030
|
|
2031
|
|
2032
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza custom_values_id_seq
|
2033
|
Il comando era: SELECT pg_catalog.setval('public.custom_values_id_seq', 50045, true);
|
2034
|
|
2035
|
|
2036
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza documents_id_seq
|
2037
|
Il comando era: SELECT pg_catalog.setval('public.documents_id_seq', 11, true);
|
2038
|
|
2039
|
|
2040
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza email_addresses_id_seq
|
2041
|
Il comando era: SELECT pg_catalog.setval('public.email_addresses_id_seq', 194, true);
|
2042
|
|
2043
|
|
2044
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza enabled_modules_id_seq
|
2045
|
Il comando era: SELECT pg_catalog.setval('public.enabled_modules_id_seq', 51, true);
|
2046
|
|
2047
|
|
2048
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza enumerations_id_seq
|
2049
|
Il comando era: SELECT pg_catalog.setval('public.enumerations_id_seq', 13, true);
|
2050
|
|
2051
|
|
2052
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza import_items_id_seq
|
2053
|
Il comando era: SELECT pg_catalog.setval('public.import_items_id_seq', 1, false);
|
2054
|
|
2055
|
|
2056
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza imports_id_seq
|
2057
|
Il comando era: SELECT pg_catalog.setval('public.imports_id_seq', 1, false);
|
2058
|
|
2059
|
|
2060
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issue_categories_id_seq
|
2061
|
Il comando era: SELECT pg_catalog.setval('public.issue_categories_id_seq', 4, true);
|
2062
|
|
2063
|
|
2064
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issue_relations_id_seq
|
2065
|
Il comando era: SELECT pg_catalog.setval('public.issue_relations_id_seq', 573, true);
|
2066
|
|
2067
|
|
2068
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issue_statuses_id_seq
|
2069
|
Il comando era: SELECT pg_catalog.setval('public.issue_statuses_id_seq', 6, true);
|
2070
|
|
2071
|
|
2072
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issues_id_seq
|
2073
|
Il comando era: SELECT pg_catalog.setval('public.issues_id_seq', 38059, true);
|
2074
|
|
2075
|
|
2076
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza journal_details_id_seq
|
2077
|
Il comando era: SELECT pg_catalog.setval('public.journal_details_id_seq', 105547, true);
|
2078
|
|
2079
|
|
2080
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza journals_id_seq
|
2081
|
Il comando era: SELECT pg_catalog.setval('public.journals_id_seq', 57991, true);
|
2082
|
|
2083
|
|
2084
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza member_roles_id_seq
|
2085
|
Il comando era: SELECT pg_catalog.setval('public.member_roles_id_seq', 729, true);
|
2086
|
|
2087
|
|
2088
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza members_id_seq
|
2089
|
Il comando era: SELECT pg_catalog.setval('public.members_id_seq', 562, true);
|
2090
|
|
2091
|
|
2092
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza messages_id_seq
|
2093
|
Il comando era: SELECT pg_catalog.setval('public.messages_id_seq', 1, false);
|
2094
|
|
2095
|
|
2096
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza news_id_seq
|
2097
|
Il comando era: SELECT pg_catalog.setval('public.news_id_seq', 2, true);
|
2098
|
|
2099
|
|
2100
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations_id_seq" non esiste
|
2101
|
RIGA 1: SELECT pg_catalog.setval('public.open_id_authentication_asso...
|
2102
|
^
|
2103
|
Il comando era: SELECT pg_catalog.setval('public.open_id_authentication_associations_id_seq', 1, false);
|
2104
|
|
2105
|
|
2106
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces_id_seq" non esiste
|
2107
|
RIGA 1: SELECT pg_catalog.setval('public.open_id_authentication_nonc...
|
2108
|
^
|
2109
|
Il comando era: SELECT pg_catalog.setval('public.open_id_authentication_nonces_id_seq', 1, false);
|
2110
|
|
2111
|
|
2112
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza projects_id_seq
|
2113
|
Il comando era: SELECT pg_catalog.setval('public.projects_id_seq', 8, true);
|
2114
|
|
2115
|
|
2116
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza queries_id_seq
|
2117
|
Il comando era: SELECT pg_catalog.setval('public.queries_id_seq', 42, true);
|
2118
|
|
2119
|
|
2120
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza repositories_id_seq
|
2121
|
Il comando era: SELECT pg_catalog.setval('public.repositories_id_seq', 1, false);
|
2122
|
|
2123
|
|
2124
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza roles_id_seq
|
2125
|
Il comando era: SELECT pg_catalog.setval('public.roles_id_seq', 13, true);
|
2126
|
|
2127
|
|
2128
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza settings_id_seq
|
2129
|
Il comando era: SELECT pg_catalog.setval('public.settings_id_seq', 79, true);
|
2130
|
|
2131
|
|
2132
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza time_entries_id_seq
|
2133
|
Il comando era: SELECT pg_catalog.setval('public.time_entries_id_seq', 170, true);
|
2134
|
|
2135
|
|
2136
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza tokens_id_seq
|
2137
|
Il comando era: SELECT pg_catalog.setval('public.tokens_id_seq', 25258, true);
|
2138
|
|
2139
|
|
2140
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza trackers_id_seq
|
2141
|
Il comando era: SELECT pg_catalog.setval('public.trackers_id_seq', 76, true);
|
2142
|
|
2143
|
|
2144
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza user_preferences_id_seq
|
2145
|
Il comando era: SELECT pg_catalog.setval('public.user_preferences_id_seq', 194, true);
|
2146
|
|
2147
|
|
2148
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza users_id_seq
|
2149
|
Il comando era: SELECT pg_catalog.setval('public.users_id_seq', 201, true);
|
2150
|
|
2151
|
|
2152
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza versions_id_seq
|
2153
|
Il comando era: SELECT pg_catalog.setval('public.versions_id_seq', 1, false);
|
2154
|
|
2155
|
|
2156
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza view_customizes_id_seq
|
2157
|
Il comando era: SELECT pg_catalog.setval('public.view_customizes_id_seq', 1, true);
|
2158
|
|
2159
|
|
2160
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza watchers_id_seq
|
2161
|
Il comando era: SELECT pg_catalog.setval('public.watchers_id_seq', 14606, true);
|
2162
|
|
2163
|
|
2164
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_content_versions_id_seq
|
2165
|
Il comando era: SELECT pg_catalog.setval('public.wiki_content_versions_id_seq', 70, true);
|
2166
|
|
2167
|
|
2168
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_contents_id_seq
|
2169
|
Il comando era: SELECT pg_catalog.setval('public.wiki_contents_id_seq', 12, true);
|
2170
|
|
2171
|
|
2172
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_pages_id_seq
|
2173
|
Il comando era: SELECT pg_catalog.setval('public.wiki_pages_id_seq', 12, true);
|
2174
|
|
2175
|
|
2176
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_redirects_id_seq
|
2177
|
Il comando era: SELECT pg_catalog.setval('public.wiki_redirects_id_seq', 5, true);
|
2178
|
|
2179
|
|
2180
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wikis_id_seq
|
2181
|
Il comando era: SELECT pg_catalog.setval('public.wikis_id_seq', 8, true);
|
2182
|
|
2183
|
|
2184
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza workflows_id_seq
|
2185
|
Il comando era: SELECT pg_catalog.setval('public.workflows_id_seq', 14964, true);
|
2186
|
|
2187
|
|
2188
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
2189
|
Il comando era: ALTER TABLE ONLY public.attachments
|
2190
|
ADD CONSTRAINT attachments_pkey PRIMARY KEY (id);
|
2191
|
|
2192
|
|
2193
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
2194
|
Il comando era: ALTER TABLE ONLY public.auth_sources
|
2195
|
ADD CONSTRAINT auth_sources_pkey PRIMARY KEY (id);
|
2196
|
|
2197
|
|
2198
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
2199
|
Il comando era: ALTER TABLE ONLY public.boards
|
2200
|
ADD CONSTRAINT boards_pkey PRIMARY KEY (id);
|
2201
|
|
2202
|
|
2203
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
2204
|
Il comando era: ALTER TABLE ONLY public.changes
|
2205
|
ADD CONSTRAINT changes_pkey PRIMARY KEY (id);
|
2206
|
|
2207
|
|
2208
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
2209
|
Il comando era: ALTER TABLE ONLY public.changesets
|
2210
|
ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
|
2211
|
|
2212
|
|
2213
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
2214
|
Il comando era: ALTER TABLE ONLY public.comments
|
2215
|
ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
|
2216
|
|
2217
|
|
2218
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_field_enumerations Il comando era: ALTER TABLE ONLY public.custom_field_enumerations
|
2219
|
ADD CONSTRAINT custom_field_enumerations_pkey PRIMARY KEY (id);
|
2220
|
|
2221
|
|
2222
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
2223
|
Il comando era: ALTER TABLE ONLY public.custom_fields
|
2224
|
ADD CONSTRAINT custom_fields_pkey PRIMARY KEY (id);
|
2225
|
|
2226
|
|
2227
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
2228
|
Il comando era: ALTER TABLE ONLY public.custom_values
|
2229
|
ADD CONSTRAINT custom_values_pkey PRIMARY KEY (id);
|
2230
|
|
2231
|
|
2232
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
2233
|
Il comando era: ALTER TABLE ONLY public.documents
|
2234
|
ADD CONSTRAINT documents_pkey PRIMARY KEY (id);
|
2235
|
|
2236
|
|
2237
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
2238
|
Il comando era: ALTER TABLE ONLY public.email_addresses
|
2239
|
ADD CONSTRAINT email_addresses_pkey PRIMARY KEY (id);
|
2240
|
|
2241
|
|
2242
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
2243
|
Il comando era: ALTER TABLE ONLY public.enabled_modules
|
2244
|
ADD CONSTRAINT enabled_modules_pkey PRIMARY KEY (id);
|
2245
|
|
2246
|
|
2247
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
2248
|
Il comando era: ALTER TABLE ONLY public.enumerations
|
2249
|
ADD CONSTRAINT enumerations_pkey PRIMARY KEY (id);
|
2250
|
|
2251
|
|
2252
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella import_items
|
2253
|
Il comando era: ALTER TABLE ONLY public.import_items
|
2254
|
ADD CONSTRAINT import_items_pkey PRIMARY KEY (id);
|
2255
|
|
2256
|
|
2257
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella imports
|
2258
|
Il comando era: ALTER TABLE ONLY public.imports
|
2259
|
ADD CONSTRAINT imports_pkey PRIMARY KEY (id);
|
2260
|
|
2261
|
|
2262
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
2263
|
Il comando era: ALTER TABLE ONLY public.issue_categories
|
2264
|
ADD CONSTRAINT issue_categories_pkey PRIMARY KEY (id);
|
2265
|
|
2266
|
|
2267
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
2268
|
Il comando era: ALTER TABLE ONLY public.issue_relations
|
2269
|
ADD CONSTRAINT issue_relations_pkey PRIMARY KEY (id);
|
2270
|
|
2271
|
|
2272
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
2273
|
Il comando era: ALTER TABLE ONLY public.issue_statuses
|
2274
|
ADD CONSTRAINT issue_statuses_pkey PRIMARY KEY (id);
|
2275
|
|
2276
|
|
2277
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2278
|
Il comando era: ALTER TABLE ONLY public.issues
|
2279
|
ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
|
2280
|
|
2281
|
|
2282
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
2283
|
Il comando era: ALTER TABLE ONLY public.journal_details
|
2284
|
ADD CONSTRAINT journal_details_pkey PRIMARY KEY (id);
|
2285
|
|
2286
|
|
2287
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
2288
|
Il comando era: ALTER TABLE ONLY public.journals
|
2289
|
ADD CONSTRAINT journals_pkey PRIMARY KEY (id);
|
2290
|
|
2291
|
|
2292
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
2293
|
Il comando era: ALTER TABLE ONLY public.member_roles
|
2294
|
ADD CONSTRAINT member_roles_pkey PRIMARY KEY (id);
|
2295
|
|
2296
|
|
2297
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
2298
|
Il comando era: ALTER TABLE ONLY public.members
|
2299
|
ADD CONSTRAINT members_pkey PRIMARY KEY (id);
|
2300
|
|
2301
|
|
2302
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
2303
|
Il comando era: ALTER TABLE ONLY public.messages
|
2304
|
ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
|
2305
|
|
2306
|
|
2307
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
2308
|
Il comando era: ALTER TABLE ONLY public.news
|
2309
|
ADD CONSTRAINT news_pkey PRIMARY KEY (id);
|
2310
|
|
2311
|
|
2312
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
2313
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_associations
|
2314
|
ADD CONSTRAINT open_id_authentication_associations_pkey PRIMARY KEY (id);
|
2315
|
|
2316
|
|
2317
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
2318
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_nonces
|
2319
|
ADD CONSTRAINT open_id_authentication_nonces_pkey PRIMARY KEY (id);
|
2320
|
|
2321
|
|
2322
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
2323
|
Il comando era: ALTER TABLE ONLY public.projects
|
2324
|
ADD CONSTRAINT projects_pkey PRIMARY KEY (id);
|
2325
|
|
2326
|
|
2327
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
2328
|
Il comando era: ALTER TABLE ONLY public.queries
|
2329
|
ADD CONSTRAINT queries_pkey PRIMARY KEY (id);
|
2330
|
|
2331
|
|
2332
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
2333
|
Il comando era: ALTER TABLE ONLY public.repositories
|
2334
|
ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
|
2335
|
|
2336
|
|
2337
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles
|
2338
|
Il comando era: ALTER TABLE ONLY public.roles
|
2339
|
ADD CONSTRAINT roles_pkey PRIMARY KEY (id);
|
2340
|
|
2341
|
|
2342
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
2343
|
Il comando era: ALTER TABLE ONLY public.settings
|
2344
|
ADD CONSTRAINT settings_pkey PRIMARY KEY (id);
|
2345
|
|
2346
|
|
2347
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
2348
|
Il comando era: ALTER TABLE ONLY public.time_entries
|
2349
|
ADD CONSTRAINT time_entries_pkey PRIMARY KEY (id);
|
2350
|
|
2351
|
|
2352
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
2353
|
Il comando era: ALTER TABLE ONLY public.tokens
|
2354
|
ADD CONSTRAINT tokens_pkey PRIMARY KEY (id);
|
2355
|
|
2356
|
|
2357
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella trackers
|
2358
|
Il comando era: ALTER TABLE ONLY public.trackers
|
2359
|
ADD CONSTRAINT trackers_pkey PRIMARY KEY (id);
|
2360
|
|
2361
|
|
2362
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
2363
|
Il comando era: ALTER TABLE ONLY public.user_preferences
|
2364
|
ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (id);
|
2365
|
|
2366
|
|
2367
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
2368
|
Il comando era: ALTER TABLE ONLY public.users
|
2369
|
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
|
2370
|
|
2371
|
|
2372
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
2373
|
Il comando era: ALTER TABLE ONLY public.versions
|
2374
|
ADD CONSTRAINT versions_pkey PRIMARY KEY (id);
|
2375
|
|
2376
|
|
2377
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella view_customizes
|
2378
|
Il comando era: ALTER TABLE ONLY public.view_customizes
|
2379
|
ADD CONSTRAINT view_customizes_pkey PRIMARY KEY (id);
|
2380
|
|
2381
|
|
2382
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
2383
|
Il comando era: ALTER TABLE ONLY public.watchers
|
2384
|
ADD CONSTRAINT watchers_pkey PRIMARY KEY (id);
|
2385
|
|
2386
|
|
2387
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
2388
|
Il comando era: ALTER TABLE ONLY public.wiki_content_versions
|
2389
|
ADD CONSTRAINT wiki_content_versions_pkey PRIMARY KEY (id);
|
2390
|
|
2391
|
|
2392
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
2393
|
Il comando era: ALTER TABLE ONLY public.wiki_contents
|
2394
|
ADD CONSTRAINT wiki_contents_pkey PRIMARY KEY (id);
|
2395
|
|
2396
|
|
2397
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
2398
|
Il comando era: ALTER TABLE ONLY public.wiki_pages
|
2399
|
ADD CONSTRAINT wiki_pages_pkey PRIMARY KEY (id);
|
2400
|
|
2401
|
|
2402
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
2403
|
Il comando era: ALTER TABLE ONLY public.wiki_redirects
|
2404
|
ADD CONSTRAINT wiki_redirects_pkey PRIMARY KEY (id);
|
2405
|
|
2406
|
|
2407
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
2408
|
Il comando era: ALTER TABLE ONLY public.wikis
|
2409
|
ADD CONSTRAINT wikis_pkey PRIMARY KEY (id);
|
2410
|
|
2411
|
|
2412
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
2413
|
Il comando era: ALTER TABLE ONLY public.workflows
|
2414
|
ADD CONSTRAINT workflows_pkey PRIMARY KEY (id);
|
2415
|
|
2416
|
|
2417
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
2418
|
Il comando era: CREATE INDEX boards_project_id ON public.boards USING btree (project_id);
|
2419
|
|
2420
|
|
2421
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changeset_parents
|
2422
|
Il comando era: CREATE INDEX changeset_parents_changeset_ids ON public.changeset_parents USING btree (changeset_id);
|
2423
|
|
2424
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changeset_parents
|
2425
|
Il comando era: CREATE INDEX changeset_parents_parent_ids ON public.changeset_parents USING btree (parent_id);
|
2426
|
|
2427
|
|
2428
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
2429
|
Il comando era: CREATE INDEX changesets_changeset_id ON public.changes USING btree (changeset_id);
|
2430
|
|
2431
|
|
2432
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets_issues
|
2433
|
Il comando era: CREATE UNIQUE INDEX changesets_issues_ids ON public.changesets_issues USING btree (changeset_id, issue_id);
|
2434
|
|
2435
|
|
2436
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
2437
|
Il comando era: CREATE UNIQUE INDEX changesets_repos_rev ON public.changesets USING btree (repository_id, revision);
|
2438
|
|
2439
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
2440
|
Il comando era: CREATE INDEX changesets_repos_scmid ON public.changesets USING btree (repository_id, scmid);
|
2441
|
|
2442
|
|
2443
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_roles
|
2444
|
Il comando era: CREATE UNIQUE INDEX custom_fields_roles_ids ON public.custom_fields_roles USING btree (custom_field_id, role_id);
|
2445
|
|
2446
|
|
2447
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
2448
|
Il comando era: CREATE INDEX custom_values_customized ON public.custom_values USING btree (customized_type, customized_id);
|
2449
|
|
2450
|
|
2451
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
2452
|
Il comando era: CREATE INDEX documents_project_id ON public.documents USING btree (project_id);
|
2453
|
|
2454
|
|
2455
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
2456
|
Il comando era: CREATE INDEX enabled_modules_project_id ON public.enabled_modules USING btree (project_id);
|
2457
|
|
2458
|
|
2459
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella groups_users
|
2460
|
Il comando era: CREATE UNIQUE INDEX groups_users_ids ON public.groups_users USING btree (group_id, user_id);
|
2461
|
|
2462
|
|
2463
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
2464
|
Il comando era: CREATE INDEX index_attachments_on_author_id ON public.attachments USING btree (author_id);
|
2465
|
|
2466
|
|
2467
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
2468
|
Il comando era: CREATE INDEX index_attachments_on_container_id_and_container_type ON public.attachments USING btree (container_id, container_type);
|
2469
|
|
2470
|
|
2471
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
2472
|
Il comando era: CREATE INDEX index_attachments_on_created_on ON public.attachments USING btree (created_on);
|
2473
|
|
2474
|
|
2475
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
2476
|
Il comando era: CREATE INDEX index_attachments_on_disk_filename ON public.attachments USING btree (disk_filename);
|
2477
|
|
2478
|
|
2479
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
2480
|
Il comando era: CREATE INDEX index_auth_sources_on_id_and_type ON public.auth_sources USING btree (id, type);
|
2481
|
|
2482
|
|
2483
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
2484
|
Il comando era: CREATE INDEX index_boards_on_last_message_id ON public.boards USING btree (last_message_id);
|
2485
|
|
2486
|
|
2487
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets_issues
|
2488
|
Il comando era: CREATE INDEX index_changesets_issues_on_issue_id ON public.changesets_issues USING btree (issue_id);
|
2489
|
|
2490
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
2491
|
Il comando era: CREATE INDEX index_changesets_on_committed_on ON public.changesets USING btree (committed_on);
|
2492
|
|
2493
|
|
2494
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
2495
|
Il comando era: CREATE INDEX index_changesets_on_repository_id ON public.changesets USING btree (repository_id);
|
2496
|
|
2497
|
|
2498
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
2499
|
Il comando era: CREATE INDEX index_changesets_on_user_id ON public.changesets USING btree (user_id);
|
2500
|
|
2501
|
|
2502
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
2503
|
Il comando era: CREATE INDEX index_comments_on_author_id ON public.comments USING btree (author_id);
|
2504
|
|
2505
|
|
2506
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
2507
|
Il comando era: CREATE INDEX index_comments_on_commented_id_and_commented_type ON public.comments USING btree (commented_id, commented_type);
|
2508
|
|
2509
|
|
2510
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
2511
|
Il comando era: CREATE INDEX index_custom_fields_on_id_and_type ON public.custom_fields USING btree (id, type);
|
2512
|
|
2513
|
|
2514
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_projects
|
2515
|
Il comando era: CREATE UNIQUE INDEX index_custom_fields_projects_on_custom_field_id_and_project_id ON public.custom_fields_projects USING btree (custom_field_id, project_id);
|
2516
|
|
2517
|
|
2518
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_trackers
|
2519
|
Il comando era: CREATE UNIQUE INDEX index_custom_fields_trackers_on_custom_field_id_and_tracker_id ON public.custom_fields_trackers USING btree (custom_field_id, tracker_id);
|
2520
|
|
2521
|
|
2522
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
2523
|
Il comando era: CREATE INDEX index_custom_values_on_custom_field_id ON public.custom_values USING btree (custom_field_id);
|
2524
|
|
2525
|
|
2526
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
2527
|
Il comando era: CREATE INDEX index_documents_on_category_id ON public.documents USING btree (category_id);
|
2528
|
|
2529
|
|
2530
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
2531
|
Il comando era: CREATE INDEX index_documents_on_created_on ON public.documents USING btree (created_on);
|
2532
|
|
2533
|
|
2534
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
2535
|
Il comando era: CREATE INDEX index_email_addresses_on_user_id ON public.email_addresses USING btree (user_id);
|
2536
|
|
2537
|
|
2538
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
2539
|
Il comando era: CREATE INDEX index_enumerations_on_id_and_type ON public.enumerations USING btree (id, type);
|
2540
|
|
2541
|
|
2542
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
2543
|
Il comando era: CREATE INDEX index_enumerations_on_project_id ON public.enumerations USING btree (project_id);
|
2544
|
|
2545
|
|
2546
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
2547
|
Il comando era: CREATE INDEX index_issue_categories_on_assigned_to_id ON public.issue_categories USING btree (assigned_to_id);
|
2548
|
|
2549
|
|
2550
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
2551
|
Il comando era: CREATE INDEX index_issue_relations_on_issue_from_id ON public.issue_relations USING btree (issue_from_id);
|
2552
|
|
2553
|
|
2554
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
2555
|
Il comando era: CREATE UNIQUE INDEX index_issue_relations_on_issue_from_id_and_issue_to_id ON public.issue_relations USING btree (issue_from_id, issue_to_id);
|
2556
|
|
2557
|
|
2558
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
2559
|
Il comando era: CREATE INDEX index_issue_relations_on_issue_to_id ON public.issue_relations USING btree (issue_to_id);
|
2560
|
|
2561
|
|
2562
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
2563
|
Il comando era: CREATE INDEX index_issue_statuses_on_is_closed ON public.issue_statuses USING btree (is_closed);
|
2564
|
|
2565
|
|
2566
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
2567
|
Il comando era: CREATE INDEX index_issue_statuses_on_position ON public.issue_statuses USING btree ("position");
|
2568
|
|
2569
|
|
2570
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2571
|
Il comando era: CREATE INDEX index_issues_on_assigned_to_id ON public.issues USING btree (assigned_to_id);
|
2572
|
|
2573
|
|
2574
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2575
|
Il comando era: CREATE INDEX index_issues_on_author_id ON public.issues USING btree (author_id);
|
2576
|
|
2577
|
|
2578
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2579
|
Il comando era: CREATE INDEX index_issues_on_category_id ON public.issues USING btree (category_id);
|
2580
|
|
2581
|
|
2582
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2583
|
Il comando era: CREATE INDEX index_issues_on_created_on ON public.issues USING btree (created_on);
|
2584
|
|
2585
|
|
2586
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2587
|
Il comando era: CREATE INDEX index_issues_on_fixed_version_id ON public.issues USING btree (fixed_version_id);
|
2588
|
|
2589
|
|
2590
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2591
|
Il comando era: CREATE INDEX index_issues_on_parent_id ON public.issues USING btree (parent_id);
|
2592
|
|
2593
|
|
2594
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2595
|
Il comando era: CREATE INDEX index_issues_on_priority_id ON public.issues USING btree (priority_id);
|
2596
|
|
2597
|
|
2598
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2599
|
Il comando era: CREATE INDEX index_issues_on_root_id_and_lft_and_rgt ON public.issues USING btree (root_id, lft, rgt);
|
2600
|
|
2601
|
|
2602
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2603
|
Il comando era: CREATE INDEX index_issues_on_status_id ON public.issues USING btree (status_id);
|
2604
|
|
2605
|
|
2606
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2607
|
Il comando era: CREATE INDEX index_issues_on_tracker_id ON public.issues USING btree (tracker_id);
|
2608
|
|
2609
|
|
2610
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
2611
|
Il comando era: CREATE INDEX index_journals_on_created_on ON public.journals USING btree (created_on);
|
2612
|
|
2613
|
|
2614
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
2615
|
Il comando era: CREATE INDEX index_journals_on_journalized_id ON public.journals USING btree (journalized_id);
|
2616
|
|
2617
|
|
2618
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
2619
|
Il comando era: CREATE INDEX index_journals_on_user_id ON public.journals USING btree (user_id);
|
2620
|
|
2621
|
|
2622
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
2623
|
Il comando era: CREATE INDEX index_member_roles_on_inherited_from ON public.member_roles USING btree (inherited_from);
|
2624
|
|
2625
|
|
2626
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
2627
|
Il comando era: CREATE INDEX index_member_roles_on_member_id ON public.member_roles USING btree (member_id);
|
2628
|
|
2629
|
|
2630
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
2631
|
Il comando era: CREATE INDEX index_member_roles_on_role_id ON public.member_roles USING btree (role_id);
|
2632
|
|
2633
|
|
2634
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
2635
|
Il comando era: CREATE INDEX index_members_on_project_id ON public.members USING btree (project_id);
|
2636
|
|
2637
|
|
2638
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
2639
|
Il comando era: CREATE INDEX index_members_on_user_id ON public.members USING btree (user_id);
|
2640
|
|
2641
|
|
2642
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
2643
|
Il comando era: CREATE UNIQUE INDEX index_members_on_user_id_and_project_id ON public.members USING btree (user_id, project_id);
|
2644
|
|
2645
|
|
2646
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
2647
|
Il comando era: CREATE INDEX index_messages_on_author_id ON public.messages USING btree (author_id);
|
2648
|
|
2649
|
|
2650
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
2651
|
Il comando era: CREATE INDEX index_messages_on_created_on ON public.messages USING btree (created_on);
|
2652
|
|
2653
|
|
2654
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
2655
|
Il comando era: CREATE INDEX index_messages_on_last_reply_id ON public.messages USING btree (last_reply_id);
|
2656
|
|
2657
|
|
2658
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
2659
|
Il comando era: CREATE INDEX index_news_on_author_id ON public.news USING btree (author_id);
|
2660
|
|
2661
|
|
2662
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
2663
|
Il comando era: CREATE INDEX index_news_on_created_on ON public.news USING btree (created_on);
|
2664
|
|
2665
|
|
2666
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
2667
|
Il comando era: CREATE INDEX index_projects_on_lft ON public.projects USING btree (lft);
|
2668
|
|
2669
|
|
2670
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
2671
|
Il comando era: CREATE INDEX index_projects_on_rgt ON public.projects USING btree (rgt);
|
2672
|
|
2673
|
|
2674
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
2675
|
Il comando era: CREATE INDEX index_queries_on_project_id ON public.queries USING btree (project_id);
|
2676
|
|
2677
|
|
2678
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
2679
|
Il comando era: CREATE INDEX index_queries_on_user_id ON public.queries USING btree (user_id);
|
2680
|
|
2681
|
|
2682
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
2683
|
Il comando era: CREATE INDEX index_repositories_on_project_id ON public.repositories USING btree (project_id);
|
2684
|
|
2685
|
|
2686
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles_managed_roles
|
2687
|
Il comando era: CREATE UNIQUE INDEX index_roles_managed_roles_on_role_id_and_managed_role_id ON public.roles_managed_roles USING btree (role_id, managed_role_id);
|
2688
|
|
2689
|
|
2690
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
2691
|
Il comando era: CREATE INDEX index_settings_on_name ON public.settings USING btree (name);
|
2692
|
|
2693
|
|
2694
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
2695
|
Il comando era: CREATE INDEX index_time_entries_on_activity_id ON public.time_entries USING btree (activity_id);
|
2696
|
|
2697
|
|
2698
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
2699
|
Il comando era: CREATE INDEX index_time_entries_on_created_on ON public.time_entries USING btree (created_on);
|
2700
|
|
2701
|
|
2702
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
2703
|
Il comando era: CREATE INDEX index_time_entries_on_user_id ON public.time_entries USING btree (user_id);
|
2704
|
|
2705
|
|
2706
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
2707
|
Il comando era: CREATE INDEX index_tokens_on_user_id ON public.tokens USING btree (user_id);
|
2708
|
|
2709
|
|
2710
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
2711
|
Il comando era: CREATE INDEX index_user_preferences_on_user_id ON public.user_preferences USING btree (user_id);
|
2712
|
|
2713
|
|
2714
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
2715
|
Il comando era: CREATE INDEX index_users_on_auth_source_id ON public.users USING btree (auth_source_id);
|
2716
|
|
2717
|
|
2718
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
2719
|
Il comando era: CREATE INDEX index_users_on_id_and_type ON public.users USING btree (id, type);
|
2720
|
|
2721
|
|
2722
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
2723
|
Il comando era: CREATE INDEX index_users_on_type ON public.users USING btree (type);
|
2724
|
|
2725
|
|
2726
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
2727
|
Il comando era: CREATE INDEX index_versions_on_sharing ON public.versions USING btree (sharing);
|
2728
|
|
2729
|
|
2730
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
2731
|
Il comando era: CREATE INDEX index_watchers_on_user_id ON public.watchers USING btree (user_id);
|
2732
|
|
2733
|
|
2734
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
2735
|
Il comando era: CREATE INDEX index_watchers_on_watchable_id_and_watchable_type ON public.watchers USING btree (watchable_id, watchable_type);
|
2736
|
|
2737
|
|
2738
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
2739
|
Il comando era: CREATE INDEX index_wiki_content_versions_on_updated_on ON public.wiki_content_versions USING btree (updated_on);
|
2740
|
|
2741
|
|
2742
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
2743
|
Il comando era: CREATE INDEX index_wiki_contents_on_author_id ON public.wiki_contents USING btree (author_id);
|
2744
|
|
2745
|
|
2746
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
2747
|
Il comando era: CREATE INDEX index_wiki_pages_on_parent_id ON public.wiki_pages USING btree (parent_id);
|
2748
|
|
2749
|
|
2750
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
2751
|
Il comando era: CREATE INDEX index_wiki_pages_on_wiki_id ON public.wiki_pages USING btree (wiki_id);
|
2752
|
|
2753
|
|
2754
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
2755
|
Il comando era: CREATE INDEX index_wiki_redirects_on_wiki_id ON public.wiki_redirects USING btree (wiki_id);
|
2756
|
|
2757
|
|
2758
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
2759
|
Il comando era: CREATE INDEX index_workflows_on_new_status_id ON public.workflows USING btree (new_status_id);
|
2760
|
|
2761
|
|
2762
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
2763
|
Il comando era: CREATE INDEX index_workflows_on_old_status_id ON public.workflows USING btree (old_status_id);
|
2764
|
|
2765
|
|
2766
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
2767
|
Il comando era: CREATE INDEX index_workflows_on_role_id ON public.workflows USING btree (role_id);
|
2768
|
|
2769
|
|
2770
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
2771
|
Il comando era: CREATE INDEX index_workflows_on_tracker_id ON public.workflows USING btree (tracker_id);
|
2772
|
|
2773
|
|
2774
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
2775
|
Il comando era: CREATE INDEX issue_categories_project_id ON public.issue_categories USING btree (project_id);
|
2776
|
|
2777
|
|
2778
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
2779
|
Il comando era: CREATE INDEX issues_project_id ON public.issues USING btree (project_id);
|
2780
|
|
2781
|
|
2782
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
2783
|
Il comando era: CREATE INDEX journal_details_journal_id ON public.journal_details USING btree (journal_id);
|
2784
|
|
2785
|
|
2786
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
2787
|
Il comando era: CREATE INDEX journals_journalized_id ON public.journals USING btree (journalized_id, journalized_type);
|
2788
|
|
2789
|
|
2790
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
2791
|
Il comando era: CREATE INDEX messages_board_id ON public.messages USING btree (board_id);
|
2792
|
|
2793
|
|
2794
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
2795
|
Il comando era: CREATE INDEX messages_parent_id ON public.messages USING btree (parent_id);
|
2796
|
|
2797
|
|
2798
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
2799
|
Il comando era: CREATE INDEX news_project_id ON public.news USING btree (project_id);
|
2800
|
|
2801
|
|
2802
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects_trackers
|
2803
|
Il comando era: CREATE INDEX projects_trackers_project_id ON public.projects_trackers USING btree (project_id);
|
2804
|
|
2805
|
|
2806
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects_trackers
|
2807
|
Il comando era: CREATE UNIQUE INDEX projects_trackers_unique ON public.projects_trackers USING btree (project_id, tracker_id);
|
2808
|
|
2809
|
|
2810
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries_roles
|
2811
|
Il comando era: CREATE UNIQUE INDEX queries_roles_ids ON public.queries_roles USING btree (query_id, role_id);
|
2812
|
|
2813
|
|
2814
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
2815
|
Il comando era: CREATE INDEX time_entries_issue_id ON public.time_entries USING btree (issue_id);
|
2816
|
|
2817
|
|
2818
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
2819
|
Il comando era: CREATE INDEX time_entries_project_id ON public.time_entries USING btree (project_id);
|
2820
|
|
2821
|
|
2822
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
2823
|
Il comando era: CREATE UNIQUE INDEX tokens_value ON public.tokens USING btree (value);
|
2824
|
|
2825
|
|
2826
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella schema_migrations
|
2827
|
Il comando era: CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING btree (version);
|
2828
|
|
2829
|
|
2830
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
2831
|
Il comando era: CREATE INDEX versions_project_id ON public.versions USING btree (project_id);
|
2832
|
|
2833
|
|
2834
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
2835
|
Il comando era: CREATE INDEX watchers_user_id_type ON public.watchers USING btree (user_id, watchable_type);
|
2836
|
|
2837
|
|
2838
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
2839
|
Il comando era: CREATE INDEX wiki_content_versions_wcid ON public.wiki_content_versions USING btree (wiki_content_id);
|
2840
|
|
2841
|
|
2842
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
2843
|
Il comando era: CREATE INDEX wiki_contents_page_id ON public.wiki_contents USING btree (page_id);
|
2844
|
|
2845
|
|
2846
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
2847
|
Il comando era: CREATE INDEX wiki_pages_wiki_id_title ON public.wiki_pages USING btree (wiki_id, title);
|
2848
|
|
2849
|
|
2850
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
2851
|
Il comando era: CREATE INDEX wiki_redirects_wiki_id_title ON public.wiki_redirects USING btree (wiki_id, title);
|
2852
|
|
2853
|
|
2854
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
2855
|
Il comando era: CREATE INDEX wikis_project_id ON public.wikis USING btree (project_id);
|
2856
|
|
2857
|
|
2858
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
2859
|
Il comando era: CREATE INDEX wkfs_role_tracker_old_status ON public.workflows USING btree (role_id, tracker_id, old_status_id);
|
2860
|
|
2861
|
|
2862
|
pg_restore: avvertimento: errori ignorati durante il ripristino: 556
|
2863
|
postgres@Redmine:~$ client_loop: send disconnect: Connection reset
|
2864
|
|
2865
|
C:\>ssh itsupport@192.168.14.254
|
2866
|
itsupport@192.168.14.254's password:
|
2867
|
Linux Redmine 5.10.0-23-amd64 #1 SMP Debian 5.10.179-1 (2023-05-12) x86_64
|
2868
|
|
2869
|
The programs included with the Debian GNU/Linux system are free software;
|
2870
|
the exact distribution terms for each program are described in the
|
2871
|
individual files in /usr/share/doc/*/copyright.
|
2872
|
|
2873
|
Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
|
2874
|
permitted by applicable law.
|
2875
|
Last login: Tue Jun 20 15:20:01 2023 from 192.168.14.136
|
2876
|
itsupport@Redmine:~$ ls
|
2877
|
backup
|
2878
|
itsupport@Redmine:~$ su -
|
2879
|
Password:
|
2880
|
root@Redmine:~# ls
|
2881
|
redmine-5.0.5.tar.gz redmineivan.sqlc
|
2882
|
root@Redmine:~# pg_restore -U redmine -h localhost -d redmine redmineivan.sqlc
|
2883
|
Password:
|
2884
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
2885
|
RIGA 1: CREATE TABLE public.attachments (
|
2886
|
^
|
2887
|
Il comando era: CREATE TABLE public.attachments (
|
2888
|
id integer NOT NULL,
|
2889
|
container_id integer,
|
2890
|
container_type character varying(30),
|
2891
|
filename character varying DEFAULT ''::character varying NOT NULL,
|
2892
|
disk_filename character varying DEFAULT ''::character varying NOT NULL,
|
2893
|
filesize bigint DEFAULT 0 NOT NULL,
|
2894
|
content_type character varying DEFAULT ''::character varying,
|
2895
|
digest character varying(64) DEFAULT ''::character varying NOT NULL,
|
2896
|
downloads integer DEFAULT 0 NOT NULL,
|
2897
|
author_id integer DEFAULT 0 NOT NULL,
|
2898
|
created_on timestamp without time zone,
|
2899
|
description character varying,
|
2900
|
disk_directory character varying
|
2901
|
);
|
2902
|
|
2903
|
|
2904
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
2905
|
Il comando era: ALTER TABLE public.attachments OWNER TO redmine;
|
2906
|
|
2907
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
2908
|
Il comando era: CREATE SEQUENCE public.attachments_id_seq
|
2909
|
START WITH 1
|
2910
|
INCREMENT BY 1
|
2911
|
NO MINVALUE
|
2912
|
NO MAXVALUE
|
2913
|
CACHE 1;
|
2914
|
|
2915
|
|
2916
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza attachments_id_seq
|
2917
|
Il comando era: ALTER TABLE public.attachments_id_seq OWNER TO redmine;
|
2918
|
|
2919
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza attachments_id_seq
|
2920
|
Il comando era: ALTER SEQUENCE public.attachments_id_seq OWNED BY public.attachments.id;
|
2921
|
|
2922
|
|
2923
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
2924
|
RIGA 1: CREATE TABLE public.auth_sources (
|
2925
|
^
|
2926
|
Il comando era: CREATE TABLE public.auth_sources (
|
2927
|
id integer NOT NULL,
|
2928
|
type character varying(30) DEFAULT ''::character varying NOT NULL,
|
2929
|
name character varying(60) DEFAULT ''::character varying NOT NULL,
|
2930
|
host character varying(60),
|
2931
|
port integer,
|
2932
|
account character varying,
|
2933
|
account_password character varying DEFAULT ''::character varying,
|
2934
|
base_dn character varying(255),
|
2935
|
attr_login character varying(30),
|
2936
|
attr_firstname character varying(30),
|
2937
|
attr_lastname character varying(30),
|
2938
|
attr_mail character varying(30),
|
2939
|
onthefly_register boolean DEFAULT false NOT NULL,
|
2940
|
tls boolean DEFAULT false NOT NULL,
|
2941
|
filter text,
|
2942
|
timeout integer
|
2943
|
);
|
2944
|
|
2945
|
|
2946
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
2947
|
Il comando era: ALTER TABLE public.auth_sources OWNER TO redmine;
|
2948
|
|
2949
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
2950
|
Il comando era: CREATE SEQUENCE public.auth_sources_id_seq
|
2951
|
START WITH 1
|
2952
|
INCREMENT BY 1
|
2953
|
NO MINVALUE
|
2954
|
NO MAXVALUE
|
2955
|
CACHE 1;
|
2956
|
|
2957
|
|
2958
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza auth_sources_id_seq
|
2959
|
Il comando era: ALTER TABLE public.auth_sources_id_seq OWNER TO redmine;
|
2960
|
|
2961
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza auth_sources_id_seq
|
2962
|
Il comando era: ALTER SEQUENCE public.auth_sources_id_seq OWNED BY public.auth_sources.id;
|
2963
|
|
2964
|
|
2965
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
2966
|
RIGA 1: CREATE TABLE public.boards (
|
2967
|
^
|
2968
|
Il comando era: CREATE TABLE public.boards (
|
2969
|
id integer NOT NULL,
|
2970
|
project_id integer NOT NULL,
|
2971
|
name character varying DEFAULT ''::character varying NOT NULL,
|
2972
|
description character varying,
|
2973
|
"position" integer,
|
2974
|
topics_count integer DEFAULT 0 NOT NULL,
|
2975
|
messages_count integer DEFAULT 0 NOT NULL,
|
2976
|
last_message_id integer,
|
2977
|
parent_id integer
|
2978
|
);
|
2979
|
|
2980
|
|
2981
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
2982
|
Il comando era: ALTER TABLE public.boards OWNER TO redmine;
|
2983
|
|
2984
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
2985
|
Il comando era: CREATE SEQUENCE public.boards_id_seq
|
2986
|
START WITH 1
|
2987
|
INCREMENT BY 1
|
2988
|
NO MINVALUE
|
2989
|
NO MAXVALUE
|
2990
|
CACHE 1;
|
2991
|
|
2992
|
|
2993
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza boards_id_seq
|
2994
|
Il comando era: ALTER TABLE public.boards_id_seq OWNER TO redmine;
|
2995
|
|
2996
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza boards_id_seq
|
2997
|
Il comando era: ALTER SEQUENCE public.boards_id_seq OWNED BY public.boards.id;
|
2998
|
|
2999
|
|
3000
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3001
|
RIGA 1: CREATE TABLE public.changes (
|
3002
|
^
|
3003
|
Il comando era: CREATE TABLE public.changes (
|
3004
|
id integer NOT NULL,
|
3005
|
changeset_id integer NOT NULL,
|
3006
|
action character varying(1) DEFAULT ''::character varying NOT NULL,
|
3007
|
path text NOT NULL,
|
3008
|
from_path text,
|
3009
|
from_revision character varying,
|
3010
|
revision character varying,
|
3011
|
branch character varying
|
3012
|
);
|
3013
|
|
3014
|
|
3015
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
3016
|
Il comando era: ALTER TABLE public.changes OWNER TO redmine;
|
3017
|
|
3018
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3019
|
Il comando era: CREATE SEQUENCE public.changes_id_seq
|
3020
|
START WITH 1
|
3021
|
INCREMENT BY 1
|
3022
|
NO MINVALUE
|
3023
|
NO MAXVALUE
|
3024
|
CACHE 1;
|
3025
|
|
3026
|
|
3027
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changes_id_seq
|
3028
|
Il comando era: ALTER TABLE public.changes_id_seq OWNER TO redmine;
|
3029
|
|
3030
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changes_id_seq
|
3031
|
Il comando era: ALTER SEQUENCE public.changes_id_seq OWNED BY public.changes.id;
|
3032
|
|
3033
|
|
3034
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3035
|
RIGA 1: CREATE TABLE public.changeset_parents (
|
3036
|
^
|
3037
|
Il comando era: CREATE TABLE public.changeset_parents (
|
3038
|
changeset_id integer NOT NULL,
|
3039
|
parent_id integer NOT NULL
|
3040
|
);
|
3041
|
|
3042
|
|
3043
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changeset_parents
|
3044
|
Il comando era: ALTER TABLE public.changeset_parents OWNER TO redmine;
|
3045
|
|
3046
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3047
|
RIGA 1: CREATE TABLE public.changesets (
|
3048
|
^
|
3049
|
Il comando era: CREATE TABLE public.changesets (
|
3050
|
id integer NOT NULL,
|
3051
|
repository_id integer NOT NULL,
|
3052
|
revision character varying NOT NULL,
|
3053
|
committer character varying,
|
3054
|
committed_on timestamp without time zone NOT NULL,
|
3055
|
comments text,
|
3056
|
commit_date date,
|
3057
|
scmid character varying,
|
3058
|
user_id integer
|
3059
|
);
|
3060
|
|
3061
|
|
3062
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
3063
|
Il comando era: ALTER TABLE public.changesets OWNER TO redmine;
|
3064
|
|
3065
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3066
|
Il comando era: CREATE SEQUENCE public.changesets_id_seq
|
3067
|
START WITH 1
|
3068
|
INCREMENT BY 1
|
3069
|
NO MINVALUE
|
3070
|
NO MAXVALUE
|
3071
|
CACHE 1;
|
3072
|
|
3073
|
|
3074
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changesets_id_seq
|
3075
|
Il comando era: ALTER TABLE public.changesets_id_seq OWNER TO redmine;
|
3076
|
|
3077
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza changesets_id_seq
|
3078
|
Il comando era: ALTER SEQUENCE public.changesets_id_seq OWNED BY public.changesets.id;
|
3079
|
|
3080
|
|
3081
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3082
|
RIGA 1: CREATE TABLE public.changesets_issues (
|
3083
|
^
|
3084
|
Il comando era: CREATE TABLE public.changesets_issues (
|
3085
|
changeset_id integer NOT NULL,
|
3086
|
issue_id integer NOT NULL
|
3087
|
);
|
3088
|
|
3089
|
|
3090
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets_issues
|
3091
|
Il comando era: ALTER TABLE public.changesets_issues OWNER TO redmine;
|
3092
|
|
3093
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3094
|
RIGA 1: CREATE TABLE public.comments (
|
3095
|
^
|
3096
|
Il comando era: CREATE TABLE public.comments (
|
3097
|
id integer NOT NULL,
|
3098
|
commented_type character varying(30) DEFAULT ''::character varying NOT NULL,
|
3099
|
commented_id integer DEFAULT 0 NOT NULL,
|
3100
|
author_id integer DEFAULT 0 NOT NULL,
|
3101
|
comments text,
|
3102
|
created_on timestamp without time zone NOT NULL,
|
3103
|
updated_on timestamp without time zone NOT NULL
|
3104
|
);
|
3105
|
|
3106
|
|
3107
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
3108
|
Il comando era: ALTER TABLE public.comments OWNER TO redmine;
|
3109
|
|
3110
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3111
|
Il comando era: CREATE SEQUENCE public.comments_id_seq
|
3112
|
START WITH 1
|
3113
|
INCREMENT BY 1
|
3114
|
NO MINVALUE
|
3115
|
NO MAXVALUE
|
3116
|
CACHE 1;
|
3117
|
|
3118
|
|
3119
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza comments_id_seq
|
3120
|
Il comando era: ALTER TABLE public.comments_id_seq OWNER TO redmine;
|
3121
|
|
3122
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza comments_id_seq
|
3123
|
Il comando era: ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;
|
3124
|
|
3125
|
|
3126
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3127
|
RIGA 1: CREATE TABLE public.custom_field_enumerations (
|
3128
|
^
|
3129
|
Il comando era: CREATE TABLE public.custom_field_enumerations (
|
3130
|
id integer NOT NULL,
|
3131
|
custom_field_id integer NOT NULL,
|
3132
|
name character varying NOT NULL,
|
3133
|
active boolean DEFAULT true NOT NULL,
|
3134
|
"position" integer DEFAULT 1 NOT NULL
|
3135
|
);
|
3136
|
|
3137
|
|
3138
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_field_enumerations
|
3139
|
Il comando era: ALTER TABLE public.custom_field_enumerations OWNER TO redmine;
|
3140
|
|
3141
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3142
|
Il comando era: CREATE SEQUENCE public.custom_field_enumerations_id_seq
|
3143
|
START WITH 1
|
3144
|
INCREMENT BY 1
|
3145
|
NO MINVALUE
|
3146
|
NO MAXVALUE
|
3147
|
CACHE 1;
|
3148
|
|
3149
|
|
3150
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_field_enumerations_id_seq
|
3151
|
Il comando era: ALTER TABLE public.custom_field_enumerations_id_seq OWNER TO redmine;
|
3152
|
|
3153
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_field_enumerations_id_seq
|
3154
|
Il comando era: ALTER SEQUENCE public.custom_field_enumerations_id_seq OWNED BY public.custom_field_enumerations.id;
|
3155
|
|
3156
|
|
3157
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3158
|
RIGA 1: CREATE TABLE public.custom_fields (
|
3159
|
^
|
3160
|
Il comando era: CREATE TABLE public.custom_fields (
|
3161
|
id integer NOT NULL,
|
3162
|
type character varying(30) DEFAULT ''::character varying NOT NULL,
|
3163
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
3164
|
field_format character varying(30) DEFAULT ''::character varying NOT NULL,
|
3165
|
possible_values text,
|
3166
|
regexp character varying DEFAULT ''::character varying,
|
3167
|
min_length integer,
|
3168
|
max_length integer,
|
3169
|
is_required boolean DEFAULT false NOT NULL,
|
3170
|
is_for_all boolean DEFAULT false NOT NULL,
|
3171
|
is_filter boolean DEFAULT false NOT NULL,
|
3172
|
"position" integer,
|
3173
|
searchable boolean DEFAULT false,
|
3174
|
default_value text,
|
3175
|
editable boolean DEFAULT true,
|
3176
|
visible boolean DEFAULT true NOT NULL,
|
3177
|
multiple boolean DEFAULT false,
|
3178
|
format_store text,
|
3179
|
description text
|
3180
|
);
|
3181
|
|
3182
|
|
3183
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
3184
|
Il comando era: ALTER TABLE public.custom_fields OWNER TO redmine;
|
3185
|
|
3186
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3187
|
Il comando era: CREATE SEQUENCE public.custom_fields_id_seq
|
3188
|
START WITH 1
|
3189
|
INCREMENT BY 1
|
3190
|
NO MINVALUE
|
3191
|
NO MAXVALUE
|
3192
|
CACHE 1;
|
3193
|
|
3194
|
|
3195
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_fields_id_seq
|
3196
|
Il comando era: ALTER TABLE public.custom_fields_id_seq OWNER TO redmine;
|
3197
|
|
3198
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_fields_id_seq
|
3199
|
Il comando era: ALTER SEQUENCE public.custom_fields_id_seq OWNED BY public.custom_fields.id;
|
3200
|
|
3201
|
|
3202
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3203
|
RIGA 1: CREATE TABLE public.custom_fields_projects (
|
3204
|
^
|
3205
|
Il comando era: CREATE TABLE public.custom_fields_projects (
|
3206
|
custom_field_id integer DEFAULT 0 NOT NULL,
|
3207
|
project_id integer DEFAULT 0 NOT NULL
|
3208
|
);
|
3209
|
|
3210
|
|
3211
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_projects
|
3212
|
Il comando era: ALTER TABLE public.custom_fields_projects OWNER TO redmine;
|
3213
|
|
3214
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3215
|
RIGA 1: CREATE TABLE public.custom_fields_roles (
|
3216
|
^
|
3217
|
Il comando era: CREATE TABLE public.custom_fields_roles (
|
3218
|
custom_field_id integer NOT NULL,
|
3219
|
role_id integer NOT NULL
|
3220
|
);
|
3221
|
|
3222
|
|
3223
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_roles
|
3224
|
Il comando era: ALTER TABLE public.custom_fields_roles OWNER TO redmine;
|
3225
|
|
3226
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3227
|
RIGA 1: CREATE TABLE public.custom_fields_trackers (
|
3228
|
^
|
3229
|
Il comando era: CREATE TABLE public.custom_fields_trackers (
|
3230
|
custom_field_id integer DEFAULT 0 NOT NULL,
|
3231
|
tracker_id integer DEFAULT 0 NOT NULL
|
3232
|
);
|
3233
|
|
3234
|
|
3235
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_trackers
|
3236
|
Il comando era: ALTER TABLE public.custom_fields_trackers OWNER TO redmine;
|
3237
|
|
3238
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3239
|
RIGA 1: CREATE TABLE public.custom_values (
|
3240
|
^
|
3241
|
Il comando era: CREATE TABLE public.custom_values (
|
3242
|
id integer NOT NULL,
|
3243
|
customized_type character varying(30) DEFAULT ''::character varying NOT NULL,
|
3244
|
customized_id integer DEFAULT 0 NOT NULL,
|
3245
|
custom_field_id integer DEFAULT 0 NOT NULL,
|
3246
|
value text
|
3247
|
);
|
3248
|
|
3249
|
|
3250
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
3251
|
Il comando era: ALTER TABLE public.custom_values OWNER TO redmine;
|
3252
|
|
3253
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3254
|
Il comando era: CREATE SEQUENCE public.custom_values_id_seq
|
3255
|
START WITH 1
|
3256
|
INCREMENT BY 1
|
3257
|
NO MINVALUE
|
3258
|
NO MAXVALUE
|
3259
|
CACHE 1;
|
3260
|
|
3261
|
|
3262
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_values_id_seq
|
3263
|
Il comando era: ALTER TABLE public.custom_values_id_seq OWNER TO redmine;
|
3264
|
|
3265
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza custom_values_id_seq
|
3266
|
Il comando era: ALTER SEQUENCE public.custom_values_id_seq OWNED BY public.custom_values.id;
|
3267
|
|
3268
|
|
3269
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3270
|
RIGA 1: CREATE TABLE public.documents (
|
3271
|
^
|
3272
|
Il comando era: CREATE TABLE public.documents (
|
3273
|
id integer NOT NULL,
|
3274
|
project_id integer DEFAULT 0 NOT NULL,
|
3275
|
category_id integer DEFAULT 0 NOT NULL,
|
3276
|
title character varying DEFAULT ''::character varying NOT NULL,
|
3277
|
description text,
|
3278
|
created_on timestamp without time zone
|
3279
|
);
|
3280
|
|
3281
|
|
3282
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
3283
|
Il comando era: ALTER TABLE public.documents OWNER TO redmine;
|
3284
|
|
3285
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3286
|
Il comando era: CREATE SEQUENCE public.documents_id_seq
|
3287
|
START WITH 1
|
3288
|
INCREMENT BY 1
|
3289
|
NO MINVALUE
|
3290
|
NO MAXVALUE
|
3291
|
CACHE 1;
|
3292
|
|
3293
|
|
3294
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza documents_id_seq
|
3295
|
Il comando era: ALTER TABLE public.documents_id_seq OWNER TO redmine;
|
3296
|
|
3297
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza documents_id_seq
|
3298
|
Il comando era: ALTER SEQUENCE public.documents_id_seq OWNED BY public.documents.id;
|
3299
|
|
3300
|
|
3301
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3302
|
RIGA 1: CREATE TABLE public.email_addresses (
|
3303
|
^
|
3304
|
Il comando era: CREATE TABLE public.email_addresses (
|
3305
|
id integer NOT NULL,
|
3306
|
user_id integer NOT NULL,
|
3307
|
address character varying NOT NULL,
|
3308
|
is_default boolean DEFAULT false NOT NULL,
|
3309
|
notify boolean DEFAULT true NOT NULL,
|
3310
|
created_on timestamp without time zone NOT NULL,
|
3311
|
updated_on timestamp without time zone NOT NULL
|
3312
|
);
|
3313
|
|
3314
|
|
3315
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
3316
|
Il comando era: ALTER TABLE public.email_addresses OWNER TO redmine;
|
3317
|
|
3318
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3319
|
Il comando era: CREATE SEQUENCE public.email_addresses_id_seq
|
3320
|
START WITH 1
|
3321
|
INCREMENT BY 1
|
3322
|
NO MINVALUE
|
3323
|
NO MAXVALUE
|
3324
|
CACHE 1;
|
3325
|
|
3326
|
|
3327
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza email_addresses_id_seq
|
3328
|
Il comando era: ALTER TABLE public.email_addresses_id_seq OWNER TO redmine;
|
3329
|
|
3330
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza email_addresses_id_seq
|
3331
|
Il comando era: ALTER SEQUENCE public.email_addresses_id_seq OWNED BY public.email_addresses.id;
|
3332
|
|
3333
|
|
3334
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3335
|
RIGA 1: CREATE TABLE public.enabled_modules (
|
3336
|
^
|
3337
|
Il comando era: CREATE TABLE public.enabled_modules (
|
3338
|
id integer NOT NULL,
|
3339
|
project_id integer,
|
3340
|
name character varying NOT NULL
|
3341
|
);
|
3342
|
|
3343
|
|
3344
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
3345
|
Il comando era: ALTER TABLE public.enabled_modules OWNER TO redmine;
|
3346
|
|
3347
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3348
|
Il comando era: CREATE SEQUENCE public.enabled_modules_id_seq
|
3349
|
START WITH 1
|
3350
|
INCREMENT BY 1
|
3351
|
NO MINVALUE
|
3352
|
NO MAXVALUE
|
3353
|
CACHE 1;
|
3354
|
|
3355
|
|
3356
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enabled_modules_id_seq
|
3357
|
Il comando era: ALTER TABLE public.enabled_modules_id_seq OWNER TO redmine;
|
3358
|
|
3359
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enabled_modules_id_seq
|
3360
|
Il comando era: ALTER SEQUENCE public.enabled_modules_id_seq OWNED BY public.enabled_modules.id;
|
3361
|
|
3362
|
|
3363
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3364
|
RIGA 1: CREATE TABLE public.enumerations (
|
3365
|
^
|
3366
|
Il comando era: CREATE TABLE public.enumerations (
|
3367
|
id integer NOT NULL,
|
3368
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
3369
|
"position" integer,
|
3370
|
is_default boolean DEFAULT false NOT NULL,
|
3371
|
type character varying,
|
3372
|
active boolean DEFAULT true NOT NULL,
|
3373
|
project_id integer,
|
3374
|
parent_id integer,
|
3375
|
position_name character varying(30)
|
3376
|
);
|
3377
|
|
3378
|
|
3379
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
3380
|
Il comando era: ALTER TABLE public.enumerations OWNER TO redmine;
|
3381
|
|
3382
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3383
|
Il comando era: CREATE SEQUENCE public.enumerations_id_seq
|
3384
|
START WITH 1
|
3385
|
INCREMENT BY 1
|
3386
|
NO MINVALUE
|
3387
|
NO MAXVALUE
|
3388
|
CACHE 1;
|
3389
|
|
3390
|
|
3391
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enumerations_id_seq
|
3392
|
Il comando era: ALTER TABLE public.enumerations_id_seq OWNER TO redmine;
|
3393
|
|
3394
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza enumerations_id_seq
|
3395
|
Il comando era: ALTER SEQUENCE public.enumerations_id_seq OWNED BY public.enumerations.id;
|
3396
|
|
3397
|
|
3398
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3399
|
RIGA 1: CREATE TABLE public.groups_users (
|
3400
|
^
|
3401
|
Il comando era: CREATE TABLE public.groups_users (
|
3402
|
group_id integer NOT NULL,
|
3403
|
user_id integer NOT NULL
|
3404
|
);
|
3405
|
|
3406
|
|
3407
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella groups_users
|
3408
|
Il comando era: ALTER TABLE public.groups_users OWNER TO redmine;
|
3409
|
|
3410
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3411
|
RIGA 1: CREATE TABLE public.import_items (
|
3412
|
^
|
3413
|
Il comando era: CREATE TABLE public.import_items (
|
3414
|
id integer NOT NULL,
|
3415
|
import_id integer NOT NULL,
|
3416
|
"position" integer NOT NULL,
|
3417
|
obj_id integer,
|
3418
|
message text
|
3419
|
);
|
3420
|
|
3421
|
|
3422
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella import_items
|
3423
|
Il comando era: ALTER TABLE public.import_items OWNER TO redmine;
|
3424
|
|
3425
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3426
|
Il comando era: CREATE SEQUENCE public.import_items_id_seq
|
3427
|
START WITH 1
|
3428
|
INCREMENT BY 1
|
3429
|
NO MINVALUE
|
3430
|
NO MAXVALUE
|
3431
|
CACHE 1;
|
3432
|
|
3433
|
|
3434
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza import_items_id_seq
|
3435
|
Il comando era: ALTER TABLE public.import_items_id_seq OWNER TO redmine;
|
3436
|
|
3437
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza import_items_id_seq
|
3438
|
Il comando era: ALTER SEQUENCE public.import_items_id_seq OWNED BY public.import_items.id;
|
3439
|
|
3440
|
|
3441
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3442
|
RIGA 1: CREATE TABLE public.imports (
|
3443
|
^
|
3444
|
Il comando era: CREATE TABLE public.imports (
|
3445
|
id integer NOT NULL,
|
3446
|
type character varying,
|
3447
|
user_id integer NOT NULL,
|
3448
|
filename character varying,
|
3449
|
settings text,
|
3450
|
total_items integer,
|
3451
|
finished boolean DEFAULT false NOT NULL,
|
3452
|
created_at timestamp without time zone NOT NULL,
|
3453
|
updated_at timestamp without time zone NOT NULL
|
3454
|
);
|
3455
|
|
3456
|
|
3457
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella imports
|
3458
|
Il comando era: ALTER TABLE public.imports OWNER TO redmine;
|
3459
|
|
3460
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3461
|
Il comando era: CREATE SEQUENCE public.imports_id_seq
|
3462
|
START WITH 1
|
3463
|
INCREMENT BY 1
|
3464
|
NO MINVALUE
|
3465
|
NO MAXVALUE
|
3466
|
CACHE 1;
|
3467
|
|
3468
|
|
3469
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza imports_id_seq
|
3470
|
Il comando era: ALTER TABLE public.imports_id_seq OWNER TO redmine;
|
3471
|
|
3472
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza imports_id_seq
|
3473
|
Il comando era: ALTER SEQUENCE public.imports_id_seq OWNED BY public.imports.id;
|
3474
|
|
3475
|
|
3476
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3477
|
RIGA 1: CREATE TABLE public.issue_categories (
|
3478
|
^
|
3479
|
Il comando era: CREATE TABLE public.issue_categories (
|
3480
|
id integer NOT NULL,
|
3481
|
project_id integer DEFAULT 0 NOT NULL,
|
3482
|
name character varying(60) DEFAULT ''::character varying NOT NULL,
|
3483
|
assigned_to_id integer
|
3484
|
);
|
3485
|
|
3486
|
|
3487
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
3488
|
Il comando era: ALTER TABLE public.issue_categories OWNER TO redmine;
|
3489
|
|
3490
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3491
|
Il comando era: CREATE SEQUENCE public.issue_categories_id_seq
|
3492
|
START WITH 1
|
3493
|
INCREMENT BY 1
|
3494
|
NO MINVALUE
|
3495
|
NO MAXVALUE
|
3496
|
CACHE 1;
|
3497
|
|
3498
|
|
3499
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_categories_id_seq
|
3500
|
Il comando era: ALTER TABLE public.issue_categories_id_seq OWNER TO redmine;
|
3501
|
|
3502
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_categories_id_seq
|
3503
|
Il comando era: ALTER SEQUENCE public.issue_categories_id_seq OWNED BY public.issue_categories.id;
|
3504
|
|
3505
|
|
3506
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3507
|
RIGA 1: CREATE TABLE public.issue_relations (
|
3508
|
^
|
3509
|
Il comando era: CREATE TABLE public.issue_relations (
|
3510
|
id integer NOT NULL,
|
3511
|
issue_from_id integer NOT NULL,
|
3512
|
issue_to_id integer NOT NULL,
|
3513
|
relation_type character varying DEFAULT ''::character varying NOT NULL,
|
3514
|
delay integer
|
3515
|
);
|
3516
|
|
3517
|
|
3518
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
3519
|
Il comando era: ALTER TABLE public.issue_relations OWNER TO redmine;
|
3520
|
|
3521
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3522
|
Il comando era: CREATE SEQUENCE public.issue_relations_id_seq
|
3523
|
START WITH 1
|
3524
|
INCREMENT BY 1
|
3525
|
NO MINVALUE
|
3526
|
NO MAXVALUE
|
3527
|
CACHE 1;
|
3528
|
|
3529
|
|
3530
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_relations_id_seq
|
3531
|
Il comando era: ALTER TABLE public.issue_relations_id_seq OWNER TO redmine;
|
3532
|
|
3533
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_relations_id_seq
|
3534
|
Il comando era: ALTER SEQUENCE public.issue_relations_id_seq OWNED BY public.issue_relations.id;
|
3535
|
|
3536
|
|
3537
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3538
|
RIGA 1: CREATE TABLE public.issue_statuses (
|
3539
|
^
|
3540
|
Il comando era: CREATE TABLE public.issue_statuses (
|
3541
|
id integer NOT NULL,
|
3542
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
3543
|
is_closed boolean DEFAULT false NOT NULL,
|
3544
|
"position" integer,
|
3545
|
default_done_ratio integer
|
3546
|
);
|
3547
|
|
3548
|
|
3549
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
3550
|
Il comando era: ALTER TABLE public.issue_statuses OWNER TO redmine;
|
3551
|
|
3552
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3553
|
Il comando era: CREATE SEQUENCE public.issue_statuses_id_seq
|
3554
|
START WITH 1
|
3555
|
INCREMENT BY 1
|
3556
|
NO MINVALUE
|
3557
|
NO MAXVALUE
|
3558
|
CACHE 1;
|
3559
|
|
3560
|
|
3561
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_statuses_id_seq
|
3562
|
Il comando era: ALTER TABLE public.issue_statuses_id_seq OWNER TO redmine;
|
3563
|
|
3564
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issue_statuses_id_seq
|
3565
|
Il comando era: ALTER SEQUENCE public.issue_statuses_id_seq OWNED BY public.issue_statuses.id;
|
3566
|
|
3567
|
|
3568
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3569
|
RIGA 1: CREATE TABLE public.issues (
|
3570
|
^
|
3571
|
Il comando era: CREATE TABLE public.issues (
|
3572
|
id integer NOT NULL,
|
3573
|
tracker_id integer NOT NULL,
|
3574
|
project_id integer NOT NULL,
|
3575
|
subject character varying DEFAULT ''::character varying NOT NULL,
|
3576
|
description text,
|
3577
|
due_date date,
|
3578
|
category_id integer,
|
3579
|
status_id integer NOT NULL,
|
3580
|
assigned_to_id integer,
|
3581
|
priority_id integer NOT NULL,
|
3582
|
fixed_version_id integer,
|
3583
|
author_id integer NOT NULL,
|
3584
|
lock_version integer DEFAULT 0 NOT NULL,
|
3585
|
created_on timestamp without time zone,
|
3586
|
updated_on timestamp without time zone,
|
3587
|
start_date date,
|
3588
|
done_ratio integer DEFAULT 0 NOT NULL,
|
3589
|
estimated_hours double precision,
|
3590
|
parent_id integer,
|
3591
|
root_id integer,
|
3592
|
lft integer,
|
3593
|
rgt integer,
|
3594
|
is_private boolean DEFAULT false NOT NULL,
|
3595
|
closed_on timestamp without time zone
|
3596
|
);
|
3597
|
|
3598
|
|
3599
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
3600
|
Il comando era: ALTER TABLE public.issues OWNER TO redmine;
|
3601
|
|
3602
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3603
|
Il comando era: CREATE SEQUENCE public.issues_id_seq
|
3604
|
START WITH 1
|
3605
|
INCREMENT BY 1
|
3606
|
NO MINVALUE
|
3607
|
NO MAXVALUE
|
3608
|
CACHE 1;
|
3609
|
|
3610
|
|
3611
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issues_id_seq
|
3612
|
Il comando era: ALTER TABLE public.issues_id_seq OWNER TO redmine;
|
3613
|
|
3614
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza issues_id_seq
|
3615
|
Il comando era: ALTER SEQUENCE public.issues_id_seq OWNED BY public.issues.id;
|
3616
|
|
3617
|
|
3618
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3619
|
RIGA 1: CREATE TABLE public.journal_details (
|
3620
|
^
|
3621
|
Il comando era: CREATE TABLE public.journal_details (
|
3622
|
id integer NOT NULL,
|
3623
|
journal_id integer DEFAULT 0 NOT NULL,
|
3624
|
property character varying(30) DEFAULT ''::character varying NOT NULL,
|
3625
|
prop_key character varying(30) DEFAULT ''::character varying NOT NULL,
|
3626
|
old_value text,
|
3627
|
value text
|
3628
|
);
|
3629
|
|
3630
|
|
3631
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
3632
|
Il comando era: ALTER TABLE public.journal_details OWNER TO redmine;
|
3633
|
|
3634
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3635
|
Il comando era: CREATE SEQUENCE public.journal_details_id_seq
|
3636
|
START WITH 1
|
3637
|
INCREMENT BY 1
|
3638
|
NO MINVALUE
|
3639
|
NO MAXVALUE
|
3640
|
CACHE 1;
|
3641
|
|
3642
|
|
3643
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journal_details_id_seq
|
3644
|
Il comando era: ALTER TABLE public.journal_details_id_seq OWNER TO redmine;
|
3645
|
|
3646
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journal_details_id_seq
|
3647
|
Il comando era: ALTER SEQUENCE public.journal_details_id_seq OWNED BY public.journal_details.id;
|
3648
|
|
3649
|
|
3650
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3651
|
RIGA 1: CREATE TABLE public.journals (
|
3652
|
^
|
3653
|
Il comando era: CREATE TABLE public.journals (
|
3654
|
id integer NOT NULL,
|
3655
|
journalized_id integer DEFAULT 0 NOT NULL,
|
3656
|
journalized_type character varying(30) DEFAULT ''::character varying NOT NULL,
|
3657
|
user_id integer DEFAULT 0 NOT NULL,
|
3658
|
notes text,
|
3659
|
created_on timestamp without time zone NOT NULL,
|
3660
|
private_notes boolean DEFAULT false NOT NULL
|
3661
|
);
|
3662
|
|
3663
|
|
3664
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
3665
|
Il comando era: ALTER TABLE public.journals OWNER TO redmine;
|
3666
|
|
3667
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3668
|
Il comando era: CREATE SEQUENCE public.journals_id_seq
|
3669
|
START WITH 1
|
3670
|
INCREMENT BY 1
|
3671
|
NO MINVALUE
|
3672
|
NO MAXVALUE
|
3673
|
CACHE 1;
|
3674
|
|
3675
|
|
3676
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journals_id_seq
|
3677
|
Il comando era: ALTER TABLE public.journals_id_seq OWNER TO redmine;
|
3678
|
|
3679
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza journals_id_seq
|
3680
|
Il comando era: ALTER SEQUENCE public.journals_id_seq OWNED BY public.journals.id;
|
3681
|
|
3682
|
|
3683
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3684
|
RIGA 1: CREATE TABLE public.member_roles (
|
3685
|
^
|
3686
|
Il comando era: CREATE TABLE public.member_roles (
|
3687
|
id integer NOT NULL,
|
3688
|
member_id integer NOT NULL,
|
3689
|
role_id integer NOT NULL,
|
3690
|
inherited_from integer
|
3691
|
);
|
3692
|
|
3693
|
|
3694
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
3695
|
Il comando era: ALTER TABLE public.member_roles OWNER TO redmine;
|
3696
|
|
3697
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3698
|
Il comando era: CREATE SEQUENCE public.member_roles_id_seq
|
3699
|
START WITH 1
|
3700
|
INCREMENT BY 1
|
3701
|
NO MINVALUE
|
3702
|
NO MAXVALUE
|
3703
|
CACHE 1;
|
3704
|
|
3705
|
|
3706
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza member_roles_id_seq
|
3707
|
Il comando era: ALTER TABLE public.member_roles_id_seq OWNER TO redmine;
|
3708
|
|
3709
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza member_roles_id_seq
|
3710
|
Il comando era: ALTER SEQUENCE public.member_roles_id_seq OWNED BY public.member_roles.id;
|
3711
|
|
3712
|
|
3713
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3714
|
RIGA 1: CREATE TABLE public.members (
|
3715
|
^
|
3716
|
Il comando era: CREATE TABLE public.members (
|
3717
|
id integer NOT NULL,
|
3718
|
user_id integer DEFAULT 0 NOT NULL,
|
3719
|
project_id integer DEFAULT 0 NOT NULL,
|
3720
|
created_on timestamp without time zone,
|
3721
|
mail_notification boolean DEFAULT false NOT NULL
|
3722
|
);
|
3723
|
|
3724
|
|
3725
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
3726
|
Il comando era: ALTER TABLE public.members OWNER TO redmine;
|
3727
|
|
3728
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3729
|
Il comando era: CREATE SEQUENCE public.members_id_seq
|
3730
|
START WITH 1
|
3731
|
INCREMENT BY 1
|
3732
|
NO MINVALUE
|
3733
|
NO MAXVALUE
|
3734
|
CACHE 1;
|
3735
|
|
3736
|
|
3737
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza members_id_seq
|
3738
|
Il comando era: ALTER TABLE public.members_id_seq OWNER TO redmine;
|
3739
|
|
3740
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza members_id_seq
|
3741
|
Il comando era: ALTER SEQUENCE public.members_id_seq OWNED BY public.members.id;
|
3742
|
|
3743
|
|
3744
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3745
|
RIGA 1: CREATE TABLE public.messages (
|
3746
|
^
|
3747
|
Il comando era: CREATE TABLE public.messages (
|
3748
|
id integer NOT NULL,
|
3749
|
board_id integer NOT NULL,
|
3750
|
parent_id integer,
|
3751
|
subject character varying DEFAULT ''::character varying NOT NULL,
|
3752
|
content text,
|
3753
|
author_id integer,
|
3754
|
replies_count integer DEFAULT 0 NOT NULL,
|
3755
|
last_reply_id integer,
|
3756
|
created_on timestamp without time zone NOT NULL,
|
3757
|
updated_on timestamp without time zone NOT NULL,
|
3758
|
locked boolean DEFAULT false,
|
3759
|
sticky integer DEFAULT 0
|
3760
|
);
|
3761
|
|
3762
|
|
3763
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
3764
|
Il comando era: ALTER TABLE public.messages OWNER TO redmine;
|
3765
|
|
3766
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3767
|
Il comando era: CREATE SEQUENCE public.messages_id_seq
|
3768
|
START WITH 1
|
3769
|
INCREMENT BY 1
|
3770
|
NO MINVALUE
|
3771
|
NO MAXVALUE
|
3772
|
CACHE 1;
|
3773
|
|
3774
|
|
3775
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza messages_id_seq
|
3776
|
Il comando era: ALTER TABLE public.messages_id_seq OWNER TO redmine;
|
3777
|
|
3778
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza messages_id_seq
|
3779
|
Il comando era: ALTER SEQUENCE public.messages_id_seq OWNED BY public.messages.id;
|
3780
|
|
3781
|
|
3782
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3783
|
RIGA 1: CREATE TABLE public.news (
|
3784
|
^
|
3785
|
Il comando era: CREATE TABLE public.news (
|
3786
|
id integer NOT NULL,
|
3787
|
project_id integer,
|
3788
|
title character varying(60) DEFAULT ''::character varying NOT NULL,
|
3789
|
summary character varying(255) DEFAULT ''::character varying,
|
3790
|
description text,
|
3791
|
author_id integer DEFAULT 0 NOT NULL,
|
3792
|
created_on timestamp without time zone,
|
3793
|
comments_count integer DEFAULT 0 NOT NULL
|
3794
|
);
|
3795
|
|
3796
|
|
3797
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
3798
|
Il comando era: ALTER TABLE public.news OWNER TO redmine;
|
3799
|
|
3800
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3801
|
Il comando era: CREATE SEQUENCE public.news_id_seq
|
3802
|
START WITH 1
|
3803
|
INCREMENT BY 1
|
3804
|
NO MINVALUE
|
3805
|
NO MAXVALUE
|
3806
|
CACHE 1;
|
3807
|
|
3808
|
|
3809
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza news_id_seq
|
3810
|
Il comando era: ALTER TABLE public.news_id_seq OWNER TO redmine;
|
3811
|
|
3812
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza news_id_seq
|
3813
|
Il comando era: ALTER SEQUENCE public.news_id_seq OWNED BY public.news.id;
|
3814
|
|
3815
|
|
3816
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3817
|
RIGA 1: CREATE TABLE public.open_id_authentication_associations (
|
3818
|
^
|
3819
|
Il comando era: CREATE TABLE public.open_id_authentication_associations (
|
3820
|
id integer NOT NULL,
|
3821
|
issued integer,
|
3822
|
lifetime integer,
|
3823
|
handle character varying,
|
3824
|
assoc_type character varying,
|
3825
|
server_url bytea,
|
3826
|
secret bytea
|
3827
|
);
|
3828
|
|
3829
|
|
3830
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
3831
|
Il comando era: ALTER TABLE public.open_id_authentication_associations OWNER TO redmine;
|
3832
|
|
3833
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3834
|
Il comando era: CREATE SEQUENCE public.open_id_authentication_associations_id_seq
|
3835
|
START WITH 1
|
3836
|
INCREMENT BY 1
|
3837
|
NO MINVALUE
|
3838
|
NO MAXVALUE
|
3839
|
CACHE 1;
|
3840
|
|
3841
|
|
3842
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations_id_seq" non esiste
|
3843
|
Il comando era: ALTER TABLE public.open_id_authentication_associations_id_seq OWNER TO redmine;
|
3844
|
|
3845
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations_id_seq" non esiste
|
3846
|
Il comando era: ALTER SEQUENCE public.open_id_authentication_associations_id_seq OWNED BY public.open_id_authentication_associations.id;
|
3847
|
|
3848
|
|
3849
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3850
|
RIGA 1: CREATE TABLE public.open_id_authentication_nonces (
|
3851
|
^
|
3852
|
Il comando era: CREATE TABLE public.open_id_authentication_nonces (
|
3853
|
id integer NOT NULL,
|
3854
|
"timestamp" integer NOT NULL,
|
3855
|
server_url character varying,
|
3856
|
salt character varying NOT NULL
|
3857
|
);
|
3858
|
|
3859
|
|
3860
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
3861
|
Il comando era: ALTER TABLE public.open_id_authentication_nonces OWNER TO redmine;
|
3862
|
|
3863
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3864
|
Il comando era: CREATE SEQUENCE public.open_id_authentication_nonces_id_seq
|
3865
|
START WITH 1
|
3866
|
INCREMENT BY 1
|
3867
|
NO MINVALUE
|
3868
|
NO MAXVALUE
|
3869
|
CACHE 1;
|
3870
|
|
3871
|
|
3872
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces_id_seq" non esiste
|
3873
|
Il comando era: ALTER TABLE public.open_id_authentication_nonces_id_seq OWNER TO redmine;
|
3874
|
|
3875
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces_id_seq" non esiste
|
3876
|
Il comando era: ALTER SEQUENCE public.open_id_authentication_nonces_id_seq OWNED BY public.open_id_authentication_nonces.id;
|
3877
|
|
3878
|
|
3879
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3880
|
RIGA 1: CREATE TABLE public.projects (
|
3881
|
^
|
3882
|
Il comando era: CREATE TABLE public.projects (
|
3883
|
id integer NOT NULL,
|
3884
|
name character varying DEFAULT ''::character varying NOT NULL,
|
3885
|
description text,
|
3886
|
homepage character varying DEFAULT ''::character varying,
|
3887
|
is_public boolean DEFAULT true NOT NULL,
|
3888
|
parent_id integer,
|
3889
|
created_on timestamp without time zone,
|
3890
|
updated_on timestamp without time zone,
|
3891
|
identifier character varying,
|
3892
|
status integer DEFAULT 1 NOT NULL,
|
3893
|
lft integer,
|
3894
|
rgt integer,
|
3895
|
inherit_members boolean DEFAULT false NOT NULL,
|
3896
|
default_version_id integer,
|
3897
|
default_assigned_to_id integer
|
3898
|
);
|
3899
|
|
3900
|
|
3901
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
3902
|
Il comando era: ALTER TABLE public.projects OWNER TO redmine;
|
3903
|
|
3904
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3905
|
Il comando era: CREATE SEQUENCE public.projects_id_seq
|
3906
|
START WITH 1
|
3907
|
INCREMENT BY 1
|
3908
|
NO MINVALUE
|
3909
|
NO MAXVALUE
|
3910
|
CACHE 1;
|
3911
|
|
3912
|
|
3913
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza projects_id_seq
|
3914
|
Il comando era: ALTER TABLE public.projects_id_seq OWNER TO redmine;
|
3915
|
|
3916
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza projects_id_seq
|
3917
|
Il comando era: ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;
|
3918
|
|
3919
|
|
3920
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3921
|
RIGA 1: CREATE TABLE public.projects_trackers (
|
3922
|
^
|
3923
|
Il comando era: CREATE TABLE public.projects_trackers (
|
3924
|
project_id integer DEFAULT 0 NOT NULL,
|
3925
|
tracker_id integer DEFAULT 0 NOT NULL
|
3926
|
);
|
3927
|
|
3928
|
|
3929
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects_trackers
|
3930
|
Il comando era: ALTER TABLE public.projects_trackers OWNER TO redmine;
|
3931
|
|
3932
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3933
|
RIGA 1: CREATE TABLE public.queries (
|
3934
|
^
|
3935
|
Il comando era: CREATE TABLE public.queries (
|
3936
|
id integer NOT NULL,
|
3937
|
project_id integer,
|
3938
|
name character varying DEFAULT ''::character varying NOT NULL,
|
3939
|
filters text,
|
3940
|
user_id integer DEFAULT 0 NOT NULL,
|
3941
|
column_names text,
|
3942
|
sort_criteria text,
|
3943
|
group_by character varying,
|
3944
|
type character varying,
|
3945
|
visibility integer DEFAULT 0,
|
3946
|
options text
|
3947
|
);
|
3948
|
|
3949
|
|
3950
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
3951
|
Il comando era: ALTER TABLE public.queries OWNER TO redmine;
|
3952
|
|
3953
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3954
|
Il comando era: CREATE SEQUENCE public.queries_id_seq
|
3955
|
START WITH 1
|
3956
|
INCREMENT BY 1
|
3957
|
NO MINVALUE
|
3958
|
NO MAXVALUE
|
3959
|
CACHE 1;
|
3960
|
|
3961
|
|
3962
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza queries_id_seq
|
3963
|
Il comando era: ALTER TABLE public.queries_id_seq OWNER TO redmine;
|
3964
|
|
3965
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza queries_id_seq
|
3966
|
Il comando era: ALTER SEQUENCE public.queries_id_seq OWNED BY public.queries.id;
|
3967
|
|
3968
|
|
3969
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3970
|
RIGA 1: CREATE TABLE public.queries_roles (
|
3971
|
^
|
3972
|
Il comando era: CREATE TABLE public.queries_roles (
|
3973
|
query_id integer NOT NULL,
|
3974
|
role_id integer NOT NULL
|
3975
|
);
|
3976
|
|
3977
|
|
3978
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries_roles
|
3979
|
Il comando era: ALTER TABLE public.queries_roles OWNER TO redmine;
|
3980
|
|
3981
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
3982
|
RIGA 1: CREATE TABLE public.repositories (
|
3983
|
^
|
3984
|
Il comando era: CREATE TABLE public.repositories (
|
3985
|
id integer NOT NULL,
|
3986
|
project_id integer DEFAULT 0 NOT NULL,
|
3987
|
url character varying DEFAULT ''::character varying NOT NULL,
|
3988
|
login character varying(60) DEFAULT ''::character varying,
|
3989
|
password character varying DEFAULT ''::character varying,
|
3990
|
root_url character varying(255) DEFAULT ''::character varying,
|
3991
|
type character varying,
|
3992
|
path_encoding character varying(64),
|
3993
|
log_encoding character varying(64),
|
3994
|
extra_info text,
|
3995
|
identifier character varying,
|
3996
|
is_default boolean DEFAULT false,
|
3997
|
created_on timestamp without time zone
|
3998
|
);
|
3999
|
|
4000
|
|
4001
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
4002
|
Il comando era: ALTER TABLE public.repositories OWNER TO redmine;
|
4003
|
|
4004
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4005
|
Il comando era: CREATE SEQUENCE public.repositories_id_seq
|
4006
|
START WITH 1
|
4007
|
INCREMENT BY 1
|
4008
|
NO MINVALUE
|
4009
|
NO MAXVALUE
|
4010
|
CACHE 1;
|
4011
|
|
4012
|
|
4013
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza repositories_id_seq
|
4014
|
Il comando era: ALTER TABLE public.repositories_id_seq OWNER TO redmine;
|
4015
|
|
4016
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza repositories_id_seq
|
4017
|
Il comando era: ALTER SEQUENCE public.repositories_id_seq OWNED BY public.repositories.id;
|
4018
|
|
4019
|
|
4020
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4021
|
RIGA 1: CREATE TABLE public.roles (
|
4022
|
^
|
4023
|
Il comando era: CREATE TABLE public.roles (
|
4024
|
id integer NOT NULL,
|
4025
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
4026
|
"position" integer,
|
4027
|
assignable boolean DEFAULT true,
|
4028
|
builtin integer DEFAULT 0 NOT NULL,
|
4029
|
permissions text,
|
4030
|
issues_visibility character varying(30) DEFAULT 'default'::character varying NOT NULL,
|
4031
|
users_visibility character varying(30) DEFAULT 'all'::character varying NOT NULL,
|
4032
|
time_entries_visibility character varying(30) DEFAULT 'all'::character varying NOT NULL,
|
4033
|
all_roles_managed boolean DEFAULT true NOT NULL,
|
4034
|
settings text
|
4035
|
);
|
4036
|
|
4037
|
|
4038
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles
|
4039
|
Il comando era: ALTER TABLE public.roles OWNER TO redmine;
|
4040
|
|
4041
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4042
|
Il comando era: CREATE SEQUENCE public.roles_id_seq
|
4043
|
START WITH 1
|
4044
|
INCREMENT BY 1
|
4045
|
NO MINVALUE
|
4046
|
NO MAXVALUE
|
4047
|
CACHE 1;
|
4048
|
|
4049
|
|
4050
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza roles_id_seq
|
4051
|
Il comando era: ALTER TABLE public.roles_id_seq OWNER TO redmine;
|
4052
|
|
4053
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza roles_id_seq
|
4054
|
Il comando era: ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id;
|
4055
|
|
4056
|
|
4057
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4058
|
RIGA 1: CREATE TABLE public.roles_managed_roles (
|
4059
|
^
|
4060
|
Il comando era: CREATE TABLE public.roles_managed_roles (
|
4061
|
role_id integer NOT NULL,
|
4062
|
managed_role_id integer NOT NULL
|
4063
|
);
|
4064
|
|
4065
|
|
4066
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles_managed_roles
|
4067
|
Il comando era: ALTER TABLE public.roles_managed_roles OWNER TO redmine;
|
4068
|
|
4069
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4070
|
RIGA 1: CREATE TABLE public.schema_migrations (
|
4071
|
^
|
4072
|
Il comando era: CREATE TABLE public.schema_migrations (
|
4073
|
version character varying NOT NULL
|
4074
|
);
|
4075
|
|
4076
|
|
4077
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella schema_migrations
|
4078
|
Il comando era: ALTER TABLE public.schema_migrations OWNER TO redmine;
|
4079
|
|
4080
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4081
|
RIGA 1: CREATE TABLE public.settings (
|
4082
|
^
|
4083
|
Il comando era: CREATE TABLE public.settings (
|
4084
|
id integer NOT NULL,
|
4085
|
name character varying(255) DEFAULT ''::character varying NOT NULL,
|
4086
|
value text,
|
4087
|
updated_on timestamp without time zone
|
4088
|
);
|
4089
|
|
4090
|
|
4091
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
4092
|
Il comando era: ALTER TABLE public.settings OWNER TO redmine;
|
4093
|
|
4094
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4095
|
Il comando era: CREATE SEQUENCE public.settings_id_seq
|
4096
|
START WITH 1
|
4097
|
INCREMENT BY 1
|
4098
|
NO MINVALUE
|
4099
|
NO MAXVALUE
|
4100
|
CACHE 1;
|
4101
|
|
4102
|
|
4103
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza settings_id_seq
|
4104
|
Il comando era: ALTER TABLE public.settings_id_seq OWNER TO redmine;
|
4105
|
|
4106
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza settings_id_seq
|
4107
|
Il comando era: ALTER SEQUENCE public.settings_id_seq OWNED BY public.settings.id;
|
4108
|
|
4109
|
|
4110
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4111
|
RIGA 1: CREATE TABLE public.time_entries (
|
4112
|
^
|
4113
|
Il comando era: CREATE TABLE public.time_entries (
|
4114
|
id integer NOT NULL,
|
4115
|
project_id integer NOT NULL,
|
4116
|
user_id integer NOT NULL,
|
4117
|
issue_id integer,
|
4118
|
hours double precision NOT NULL,
|
4119
|
comments character varying(1024),
|
4120
|
activity_id integer NOT NULL,
|
4121
|
spent_on date NOT NULL,
|
4122
|
tyear integer NOT NULL,
|
4123
|
tmonth integer NOT NULL,
|
4124
|
tweek integer NOT NULL,
|
4125
|
created_on timestamp without time zone NOT NULL,
|
4126
|
updated_on timestamp without time zone NOT NULL
|
4127
|
);
|
4128
|
|
4129
|
|
4130
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
4131
|
Il comando era: ALTER TABLE public.time_entries OWNER TO redmine;
|
4132
|
|
4133
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4134
|
Il comando era: CREATE SEQUENCE public.time_entries_id_seq
|
4135
|
START WITH 1
|
4136
|
INCREMENT BY 1
|
4137
|
NO MINVALUE
|
4138
|
NO MAXVALUE
|
4139
|
CACHE 1;
|
4140
|
|
4141
|
|
4142
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza time_entries_id_seq
|
4143
|
Il comando era: ALTER TABLE public.time_entries_id_seq OWNER TO redmine;
|
4144
|
|
4145
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza time_entries_id_seq
|
4146
|
Il comando era: ALTER SEQUENCE public.time_entries_id_seq OWNED BY public.time_entries.id;
|
4147
|
|
4148
|
|
4149
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4150
|
RIGA 1: CREATE TABLE public.tokens (
|
4151
|
^
|
4152
|
Il comando era: CREATE TABLE public.tokens (
|
4153
|
id integer NOT NULL,
|
4154
|
user_id integer DEFAULT 0 NOT NULL,
|
4155
|
action character varying(30) DEFAULT ''::character varying NOT NULL,
|
4156
|
value character varying(40) DEFAULT ''::character varying NOT NULL,
|
4157
|
created_on timestamp without time zone NOT NULL,
|
4158
|
updated_on timestamp without time zone
|
4159
|
);
|
4160
|
|
4161
|
|
4162
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
4163
|
Il comando era: ALTER TABLE public.tokens OWNER TO redmine;
|
4164
|
|
4165
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4166
|
Il comando era: CREATE SEQUENCE public.tokens_id_seq
|
4167
|
START WITH 1
|
4168
|
INCREMENT BY 1
|
4169
|
NO MINVALUE
|
4170
|
NO MAXVALUE
|
4171
|
CACHE 1;
|
4172
|
|
4173
|
|
4174
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza tokens_id_seq
|
4175
|
Il comando era: ALTER TABLE public.tokens_id_seq OWNER TO redmine;
|
4176
|
|
4177
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza tokens_id_seq
|
4178
|
Il comando era: ALTER SEQUENCE public.tokens_id_seq OWNED BY public.tokens.id;
|
4179
|
|
4180
|
|
4181
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4182
|
RIGA 1: CREATE TABLE public.trackers (
|
4183
|
^
|
4184
|
Il comando era: CREATE TABLE public.trackers (
|
4185
|
id integer NOT NULL,
|
4186
|
name character varying(30) DEFAULT ''::character varying NOT NULL,
|
4187
|
is_in_chlog boolean DEFAULT false NOT NULL,
|
4188
|
"position" integer,
|
4189
|
is_in_roadmap boolean DEFAULT true NOT NULL,
|
4190
|
fields_bits integer DEFAULT 0,
|
4191
|
default_status_id integer
|
4192
|
);
|
4193
|
|
4194
|
|
4195
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella trackers
|
4196
|
Il comando era: ALTER TABLE public.trackers OWNER TO redmine;
|
4197
|
|
4198
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4199
|
Il comando era: CREATE SEQUENCE public.trackers_id_seq
|
4200
|
START WITH 1
|
4201
|
INCREMENT BY 1
|
4202
|
NO MINVALUE
|
4203
|
NO MAXVALUE
|
4204
|
CACHE 1;
|
4205
|
|
4206
|
|
4207
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza trackers_id_seq
|
4208
|
Il comando era: ALTER TABLE public.trackers_id_seq OWNER TO redmine;
|
4209
|
|
4210
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza trackers_id_seq
|
4211
|
Il comando era: ALTER SEQUENCE public.trackers_id_seq OWNED BY public.trackers.id;
|
4212
|
|
4213
|
|
4214
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4215
|
RIGA 1: CREATE TABLE public.user_preferences (
|
4216
|
^
|
4217
|
Il comando era: CREATE TABLE public.user_preferences (
|
4218
|
id integer NOT NULL,
|
4219
|
user_id integer DEFAULT 0 NOT NULL,
|
4220
|
others text,
|
4221
|
hide_mail boolean DEFAULT true,
|
4222
|
time_zone character varying
|
4223
|
);
|
4224
|
|
4225
|
|
4226
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
4227
|
Il comando era: ALTER TABLE public.user_preferences OWNER TO redmine;
|
4228
|
|
4229
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4230
|
Il comando era: CREATE SEQUENCE public.user_preferences_id_seq
|
4231
|
START WITH 1
|
4232
|
INCREMENT BY 1
|
4233
|
NO MINVALUE
|
4234
|
NO MAXVALUE
|
4235
|
CACHE 1;
|
4236
|
|
4237
|
|
4238
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza user_preferences_id_seq
|
4239
|
Il comando era: ALTER TABLE public.user_preferences_id_seq OWNER TO redmine;
|
4240
|
|
4241
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza user_preferences_id_seq
|
4242
|
Il comando era: ALTER SEQUENCE public.user_preferences_id_seq OWNED BY public.user_preferences.id;
|
4243
|
|
4244
|
|
4245
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4246
|
RIGA 1: CREATE TABLE public.users (
|
4247
|
^
|
4248
|
Il comando era: CREATE TABLE public.users (
|
4249
|
id integer NOT NULL,
|
4250
|
login character varying DEFAULT ''::character varying NOT NULL,
|
4251
|
hashed_password character varying(40) DEFAULT ''::character varying NOT NULL,
|
4252
|
firstname character varying(30) DEFAULT ''::character varying NOT NULL,
|
4253
|
lastname character varying(255) DEFAULT ''::character varying NOT NULL,
|
4254
|
admin boolean DEFAULT false NOT NULL,
|
4255
|
status integer DEFAULT 1 NOT NULL,
|
4256
|
last_login_on timestamp without time zone,
|
4257
|
language character varying(5) DEFAULT ''::character varying,
|
4258
|
auth_source_id integer,
|
4259
|
created_on timestamp without time zone,
|
4260
|
updated_on timestamp without time zone,
|
4261
|
type character varying,
|
4262
|
identity_url character varying,
|
4263
|
mail_notification character varying DEFAULT ''::character varying NOT NULL,
|
4264
|
salt character varying(64),
|
4265
|
must_change_passwd boolean DEFAULT false NOT NULL,
|
4266
|
passwd_changed_on timestamp without time zone
|
4267
|
);
|
4268
|
|
4269
|
|
4270
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
4271
|
Il comando era: ALTER TABLE public.users OWNER TO redmine;
|
4272
|
|
4273
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4274
|
Il comando era: CREATE SEQUENCE public.users_id_seq
|
4275
|
START WITH 1
|
4276
|
INCREMENT BY 1
|
4277
|
NO MINVALUE
|
4278
|
NO MAXVALUE
|
4279
|
CACHE 1;
|
4280
|
|
4281
|
|
4282
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza users_id_seq
|
4283
|
Il comando era: ALTER TABLE public.users_id_seq OWNER TO redmine;
|
4284
|
|
4285
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza users_id_seq
|
4286
|
Il comando era: ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
|
4287
|
|
4288
|
|
4289
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4290
|
RIGA 1: CREATE TABLE public.versions (
|
4291
|
^
|
4292
|
Il comando era: CREATE TABLE public.versions (
|
4293
|
id integer NOT NULL,
|
4294
|
project_id integer DEFAULT 0 NOT NULL,
|
4295
|
name character varying DEFAULT ''::character varying NOT NULL,
|
4296
|
description character varying DEFAULT ''::character varying,
|
4297
|
effective_date date,
|
4298
|
created_on timestamp without time zone,
|
4299
|
updated_on timestamp without time zone,
|
4300
|
wiki_page_title character varying,
|
4301
|
status character varying DEFAULT 'open'::character varying,
|
4302
|
sharing character varying DEFAULT 'none'::character varying NOT NULL
|
4303
|
);
|
4304
|
|
4305
|
|
4306
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
4307
|
Il comando era: ALTER TABLE public.versions OWNER TO redmine;
|
4308
|
|
4309
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4310
|
Il comando era: CREATE SEQUENCE public.versions_id_seq
|
4311
|
START WITH 1
|
4312
|
INCREMENT BY 1
|
4313
|
NO MINVALUE
|
4314
|
NO MAXVALUE
|
4315
|
CACHE 1;
|
4316
|
|
4317
|
|
4318
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza versions_id_seq
|
4319
|
Il comando era: ALTER TABLE public.versions_id_seq OWNER TO redmine;
|
4320
|
|
4321
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza versions_id_seq
|
4322
|
Il comando era: ALTER SEQUENCE public.versions_id_seq OWNED BY public.versions.id;
|
4323
|
|
4324
|
|
4325
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4326
|
RIGA 1: CREATE TABLE public.view_customizes (
|
4327
|
^
|
4328
|
Il comando era: CREATE TABLE public.view_customizes (
|
4329
|
id integer NOT NULL,
|
4330
|
path_pattern character varying NOT NULL,
|
4331
|
code text NOT NULL,
|
4332
|
is_enabled boolean DEFAULT true NOT NULL,
|
4333
|
is_private boolean DEFAULT false NOT NULL,
|
4334
|
author_id integer DEFAULT 0 NOT NULL,
|
4335
|
insertion_position character varying DEFAULT 'html_head'::character varying NOT NULL,
|
4336
|
customize_type character varying DEFAULT 'javascript'::character varying NOT NULL,
|
4337
|
comments character varying
|
4338
|
);
|
4339
|
|
4340
|
|
4341
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella view_customizes
|
4342
|
Il comando era: ALTER TABLE public.view_customizes OWNER TO redmine;
|
4343
|
|
4344
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4345
|
Il comando era: CREATE SEQUENCE public.view_customizes_id_seq
|
4346
|
START WITH 1
|
4347
|
INCREMENT BY 1
|
4348
|
NO MINVALUE
|
4349
|
NO MAXVALUE
|
4350
|
CACHE 1;
|
4351
|
|
4352
|
|
4353
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza view_customizes_id_seq
|
4354
|
Il comando era: ALTER TABLE public.view_customizes_id_seq OWNER TO redmine;
|
4355
|
|
4356
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza view_customizes_id_seq
|
4357
|
Il comando era: ALTER SEQUENCE public.view_customizes_id_seq OWNED BY public.view_customizes.id;
|
4358
|
|
4359
|
|
4360
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4361
|
RIGA 1: CREATE TABLE public.watchers (
|
4362
|
^
|
4363
|
Il comando era: CREATE TABLE public.watchers (
|
4364
|
id integer NOT NULL,
|
4365
|
watchable_type character varying DEFAULT ''::character varying NOT NULL,
|
4366
|
watchable_id integer DEFAULT 0 NOT NULL,
|
4367
|
user_id integer
|
4368
|
);
|
4369
|
|
4370
|
|
4371
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
4372
|
Il comando era: ALTER TABLE public.watchers OWNER TO redmine;
|
4373
|
|
4374
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4375
|
Il comando era: CREATE SEQUENCE public.watchers_id_seq
|
4376
|
START WITH 1
|
4377
|
INCREMENT BY 1
|
4378
|
NO MINVALUE
|
4379
|
NO MAXVALUE
|
4380
|
CACHE 1;
|
4381
|
|
4382
|
|
4383
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza watchers_id_seq
|
4384
|
Il comando era: ALTER TABLE public.watchers_id_seq OWNER TO redmine;
|
4385
|
|
4386
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza watchers_id_seq
|
4387
|
Il comando era: ALTER SEQUENCE public.watchers_id_seq OWNED BY public.watchers.id;
|
4388
|
|
4389
|
|
4390
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4391
|
RIGA 1: CREATE TABLE public.wiki_content_versions (
|
4392
|
^
|
4393
|
Il comando era: CREATE TABLE public.wiki_content_versions (
|
4394
|
id integer NOT NULL,
|
4395
|
wiki_content_id integer NOT NULL,
|
4396
|
page_id integer NOT NULL,
|
4397
|
author_id integer,
|
4398
|
data bytea,
|
4399
|
compression character varying(6) DEFAULT ''::character varying,
|
4400
|
comments character varying(1024) DEFAULT ''::character varying,
|
4401
|
updated_on timestamp without time zone NOT NULL,
|
4402
|
version integer NOT NULL
|
4403
|
);
|
4404
|
|
4405
|
|
4406
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
4407
|
Il comando era: ALTER TABLE public.wiki_content_versions OWNER TO redmine;
|
4408
|
|
4409
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4410
|
Il comando era: CREATE SEQUENCE public.wiki_content_versions_id_seq
|
4411
|
START WITH 1
|
4412
|
INCREMENT BY 1
|
4413
|
NO MINVALUE
|
4414
|
NO MAXVALUE
|
4415
|
CACHE 1;
|
4416
|
|
4417
|
|
4418
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_content_versions_id_seq
|
4419
|
Il comando era: ALTER TABLE public.wiki_content_versions_id_seq OWNER TO redmine;
|
4420
|
|
4421
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_content_versions_id_seq
|
4422
|
Il comando era: ALTER SEQUENCE public.wiki_content_versions_id_seq OWNED BY public.wiki_content_versions.id;
|
4423
|
|
4424
|
|
4425
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4426
|
RIGA 1: CREATE TABLE public.wiki_contents (
|
4427
|
^
|
4428
|
Il comando era: CREATE TABLE public.wiki_contents (
|
4429
|
id integer NOT NULL,
|
4430
|
page_id integer NOT NULL,
|
4431
|
author_id integer,
|
4432
|
text text,
|
4433
|
comments character varying(1024) DEFAULT ''::character varying,
|
4434
|
updated_on timestamp without time zone NOT NULL,
|
4435
|
version integer NOT NULL
|
4436
|
);
|
4437
|
|
4438
|
|
4439
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
4440
|
Il comando era: ALTER TABLE public.wiki_contents OWNER TO redmine;
|
4441
|
|
4442
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4443
|
Il comando era: CREATE SEQUENCE public.wiki_contents_id_seq
|
4444
|
START WITH 1
|
4445
|
INCREMENT BY 1
|
4446
|
NO MINVALUE
|
4447
|
NO MAXVALUE
|
4448
|
CACHE 1;
|
4449
|
|
4450
|
|
4451
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_contents_id_seq
|
4452
|
Il comando era: ALTER TABLE public.wiki_contents_id_seq OWNER TO redmine;
|
4453
|
|
4454
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_contents_id_seq
|
4455
|
Il comando era: ALTER SEQUENCE public.wiki_contents_id_seq OWNED BY public.wiki_contents.id;
|
4456
|
|
4457
|
|
4458
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4459
|
RIGA 1: CREATE TABLE public.wiki_pages (
|
4460
|
^
|
4461
|
Il comando era: CREATE TABLE public.wiki_pages (
|
4462
|
id integer NOT NULL,
|
4463
|
wiki_id integer NOT NULL,
|
4464
|
title character varying(255) NOT NULL,
|
4465
|
created_on timestamp without time zone NOT NULL,
|
4466
|
protected boolean DEFAULT false NOT NULL,
|
4467
|
parent_id integer
|
4468
|
);
|
4469
|
|
4470
|
|
4471
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
4472
|
Il comando era: ALTER TABLE public.wiki_pages OWNER TO redmine;
|
4473
|
|
4474
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4475
|
Il comando era: CREATE SEQUENCE public.wiki_pages_id_seq
|
4476
|
START WITH 1
|
4477
|
INCREMENT BY 1
|
4478
|
NO MINVALUE
|
4479
|
NO MAXVALUE
|
4480
|
CACHE 1;
|
4481
|
|
4482
|
|
4483
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_pages_id_seq
|
4484
|
Il comando era: ALTER TABLE public.wiki_pages_id_seq OWNER TO redmine;
|
4485
|
|
4486
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_pages_id_seq
|
4487
|
Il comando era: ALTER SEQUENCE public.wiki_pages_id_seq OWNED BY public.wiki_pages.id;
|
4488
|
|
4489
|
|
4490
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4491
|
RIGA 1: CREATE TABLE public.wiki_redirects (
|
4492
|
^
|
4493
|
Il comando era: CREATE TABLE public.wiki_redirects (
|
4494
|
id integer NOT NULL,
|
4495
|
wiki_id integer NOT NULL,
|
4496
|
title character varying,
|
4497
|
redirects_to character varying,
|
4498
|
created_on timestamp without time zone NOT NULL,
|
4499
|
redirects_to_wiki_id integer NOT NULL
|
4500
|
);
|
4501
|
|
4502
|
|
4503
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
4504
|
Il comando era: ALTER TABLE public.wiki_redirects OWNER TO redmine;
|
4505
|
|
4506
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4507
|
Il comando era: CREATE SEQUENCE public.wiki_redirects_id_seq
|
4508
|
START WITH 1
|
4509
|
INCREMENT BY 1
|
4510
|
NO MINVALUE
|
4511
|
NO MAXVALUE
|
4512
|
CACHE 1;
|
4513
|
|
4514
|
|
4515
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_redirects_id_seq
|
4516
|
Il comando era: ALTER TABLE public.wiki_redirects_id_seq OWNER TO redmine;
|
4517
|
|
4518
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wiki_redirects_id_seq
|
4519
|
Il comando era: ALTER SEQUENCE public.wiki_redirects_id_seq OWNED BY public.wiki_redirects.id;
|
4520
|
|
4521
|
|
4522
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4523
|
RIGA 1: CREATE TABLE public.wikis (
|
4524
|
^
|
4525
|
Il comando era: CREATE TABLE public.wikis (
|
4526
|
id integer NOT NULL,
|
4527
|
project_id integer NOT NULL,
|
4528
|
start_page character varying(255) NOT NULL,
|
4529
|
status integer DEFAULT 1 NOT NULL
|
4530
|
);
|
4531
|
|
4532
|
|
4533
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
4534
|
Il comando era: ALTER TABLE public.wikis OWNER TO redmine;
|
4535
|
|
4536
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4537
|
Il comando era: CREATE SEQUENCE public.wikis_id_seq
|
4538
|
START WITH 1
|
4539
|
INCREMENT BY 1
|
4540
|
NO MINVALUE
|
4541
|
NO MAXVALUE
|
4542
|
CACHE 1;
|
4543
|
|
4544
|
|
4545
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wikis_id_seq
|
4546
|
Il comando era: ALTER TABLE public.wikis_id_seq OWNER TO redmine;
|
4547
|
|
4548
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza wikis_id_seq
|
4549
|
Il comando era: ALTER SEQUENCE public.wikis_id_seq OWNED BY public.wikis.id;
|
4550
|
|
4551
|
|
4552
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4553
|
RIGA 1: CREATE TABLE public.workflows (
|
4554
|
^
|
4555
|
Il comando era: CREATE TABLE public.workflows (
|
4556
|
id integer NOT NULL,
|
4557
|
tracker_id integer DEFAULT 0 NOT NULL,
|
4558
|
old_status_id integer DEFAULT 0 NOT NULL,
|
4559
|
new_status_id integer DEFAULT 0 NOT NULL,
|
4560
|
role_id integer DEFAULT 0 NOT NULL,
|
4561
|
assignee boolean DEFAULT false NOT NULL,
|
4562
|
author boolean DEFAULT false NOT NULL,
|
4563
|
type character varying(30),
|
4564
|
field_name character varying(30),
|
4565
|
rule character varying(30)
|
4566
|
);
|
4567
|
|
4568
|
|
4569
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
4570
|
Il comando era: ALTER TABLE public.workflows OWNER TO redmine;
|
4571
|
|
4572
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per lo schema public
|
4573
|
Il comando era: CREATE SEQUENCE public.workflows_id_seq
|
4574
|
START WITH 1
|
4575
|
INCREMENT BY 1
|
4576
|
NO MINVALUE
|
4577
|
NO MAXVALUE
|
4578
|
CACHE 1;
|
4579
|
|
4580
|
|
4581
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza workflows_id_seq
|
4582
|
Il comando era: ALTER TABLE public.workflows_id_seq OWNER TO redmine;
|
4583
|
|
4584
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della sequenza workflows_id_seq
|
4585
|
Il comando era: ALTER SEQUENCE public.workflows_id_seq OWNED BY public.workflows.id;
|
4586
|
|
4587
|
|
4588
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
4589
|
Il comando era: ALTER TABLE ONLY public.attachments ALTER COLUMN id SET DEFAULT nextval('public.attachments_id_seq'::regclass);
|
4590
|
|
4591
|
|
4592
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
4593
|
Il comando era: ALTER TABLE ONLY public.auth_sources ALTER COLUMN id SET DEFAULT nextval('public.auth_sources_id_seq'::regclass);
|
4594
|
|
4595
|
|
4596
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
4597
|
Il comando era: ALTER TABLE ONLY public.boards ALTER COLUMN id SET DEFAULT nextval('public.boards_id_seq'::regclass);
|
4598
|
|
4599
|
|
4600
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
4601
|
Il comando era: ALTER TABLE ONLY public.changes ALTER COLUMN id SET DEFAULT nextval('public.changes_id_seq'::regclass);
|
4602
|
|
4603
|
|
4604
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
4605
|
Il comando era: ALTER TABLE ONLY public.changesets ALTER COLUMN id SET DEFAULT nextval('public.changesets_id_seq'::regclass);
|
4606
|
|
4607
|
|
4608
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
4609
|
Il comando era: ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);
|
4610
|
|
4611
|
|
4612
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_field_enumerations
|
4613
|
Il comando era: ALTER TABLE ONLY public.custom_field_enumerations ALTER COLUMN id SET DEFAULT nextval('public.custom_field_enumerations_id_seq'::regclass);
|
4614
|
|
4615
|
|
4616
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
4617
|
Il comando era: ALTER TABLE ONLY public.custom_fields ALTER COLUMN id SET DEFAULT nextval('public.custom_fields_id_seq'::regclass);
|
4618
|
|
4619
|
|
4620
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
4621
|
Il comando era: ALTER TABLE ONLY public.custom_values ALTER COLUMN id SET DEFAULT nextval('public.custom_values_id_seq'::regclass);
|
4622
|
|
4623
|
|
4624
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
4625
|
Il comando era: ALTER TABLE ONLY public.documents ALTER COLUMN id SET DEFAULT nextval('public.documents_id_seq'::regclass);
|
4626
|
|
4627
|
|
4628
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
4629
|
Il comando era: ALTER TABLE ONLY public.email_addresses ALTER COLUMN id SET DEFAULT nextval('public.email_addresses_id_seq'::regclass);
|
4630
|
|
4631
|
|
4632
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
4633
|
Il comando era: ALTER TABLE ONLY public.enabled_modules ALTER COLUMN id SET DEFAULT nextval('public.enabled_modules_id_seq'::regclass);
|
4634
|
|
4635
|
|
4636
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
4637
|
Il comando era: ALTER TABLE ONLY public.enumerations ALTER COLUMN id SET DEFAULT nextval('public.enumerations_id_seq'::regclass);
|
4638
|
|
4639
|
|
4640
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella import_items
|
4641
|
Il comando era: ALTER TABLE ONLY public.import_items ALTER COLUMN id SET DEFAULT nextval('public.import_items_id_seq'::regclass);
|
4642
|
|
4643
|
|
4644
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella imports
|
4645
|
Il comando era: ALTER TABLE ONLY public.imports ALTER COLUMN id SET DEFAULT nextval('public.imports_id_seq'::regclass);
|
4646
|
|
4647
|
|
4648
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
4649
|
Il comando era: ALTER TABLE ONLY public.issue_categories ALTER COLUMN id SET DEFAULT nextval('public.issue_categories_id_seq'::regclass);
|
4650
|
|
4651
|
|
4652
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
4653
|
Il comando era: ALTER TABLE ONLY public.issue_relations ALTER COLUMN id SET DEFAULT nextval('public.issue_relations_id_seq'::regclass);
|
4654
|
|
4655
|
|
4656
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
4657
|
Il comando era: ALTER TABLE ONLY public.issue_statuses ALTER COLUMN id SET DEFAULT nextval('public.issue_statuses_id_seq'::regclass);
|
4658
|
|
4659
|
|
4660
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
4661
|
Il comando era: ALTER TABLE ONLY public.issues ALTER COLUMN id SET DEFAULT nextval('public.issues_id_seq'::regclass);
|
4662
|
|
4663
|
|
4664
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
4665
|
Il comando era: ALTER TABLE ONLY public.journal_details ALTER COLUMN id SET DEFAULT nextval('public.journal_details_id_seq'::regclass);
|
4666
|
|
4667
|
|
4668
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
4669
|
Il comando era: ALTER TABLE ONLY public.journals ALTER COLUMN id SET DEFAULT nextval('public.journals_id_seq'::regclass);
|
4670
|
|
4671
|
|
4672
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
4673
|
Il comando era: ALTER TABLE ONLY public.member_roles ALTER COLUMN id SET DEFAULT nextval('public.member_roles_id_seq'::regclass);
|
4674
|
|
4675
|
|
4676
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
4677
|
Il comando era: ALTER TABLE ONLY public.members ALTER COLUMN id SET DEFAULT nextval('public.members_id_seq'::regclass);
|
4678
|
|
4679
|
|
4680
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
4681
|
Il comando era: ALTER TABLE ONLY public.messages ALTER COLUMN id SET DEFAULT nextval('public.messages_id_seq'::regclass);
|
4682
|
|
4683
|
|
4684
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
4685
|
Il comando era: ALTER TABLE ONLY public.news ALTER COLUMN id SET DEFAULT nextval('public.news_id_seq'::regclass);
|
4686
|
|
4687
|
|
4688
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
4689
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_associations ALTER COLUMN id SET DEFAULT nextval('public.open_id_authentication_associations_id_seq'::regclass);
|
4690
|
|
4691
|
|
4692
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
4693
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_nonces ALTER COLUMN id SET DEFAULT nextval('public.open_id_authentication_nonces_id_seq'::regclass);
|
4694
|
|
4695
|
|
4696
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
4697
|
Il comando era: ALTER TABLE ONLY public.projects ALTER COLUMN id SET DEFAULT nextval('public.projects_id_seq'::regclass);
|
4698
|
|
4699
|
|
4700
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
4701
|
Il comando era: ALTER TABLE ONLY public.queries ALTER COLUMN id SET DEFAULT nextval('public.queries_id_seq'::regclass);
|
4702
|
|
4703
|
|
4704
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
4705
|
Il comando era: ALTER TABLE ONLY public.repositories ALTER COLUMN id SET DEFAULT nextval('public.repositories_id_seq'::regclass);
|
4706
|
|
4707
|
|
4708
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles
|
4709
|
Il comando era: ALTER TABLE ONLY public.roles ALTER COLUMN id SET DEFAULT nextval('public.roles_id_seq'::regclass);
|
4710
|
|
4711
|
|
4712
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
4713
|
Il comando era: ALTER TABLE ONLY public.settings ALTER COLUMN id SET DEFAULT nextval('public.settings_id_seq'::regclass);
|
4714
|
|
4715
|
|
4716
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
4717
|
Il comando era: ALTER TABLE ONLY public.time_entries ALTER COLUMN id SET DEFAULT nextval('public.time_entries_id_seq'::regclass);
|
4718
|
|
4719
|
|
4720
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
4721
|
Il comando era: ALTER TABLE ONLY public.tokens ALTER COLUMN id SET DEFAULT nextval('public.tokens_id_seq'::regclass);
|
4722
|
|
4723
|
|
4724
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella trackers
|
4725
|
Il comando era: ALTER TABLE ONLY public.trackers ALTER COLUMN id SET DEFAULT nextval('public.trackers_id_seq'::regclass);
|
4726
|
|
4727
|
|
4728
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
4729
|
Il comando era: ALTER TABLE ONLY public.user_preferences ALTER COLUMN id SET DEFAULT nextval('public.user_preferences_id_seq'::regclass);
|
4730
|
|
4731
|
|
4732
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
4733
|
Il comando era: ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
|
4734
|
|
4735
|
|
4736
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
4737
|
Il comando era: ALTER TABLE ONLY public.versions ALTER COLUMN id SET DEFAULT nextval('public.versions_id_seq'::regclass);
|
4738
|
|
4739
|
|
4740
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella view_customizes
|
4741
|
Il comando era: ALTER TABLE ONLY public.view_customizes ALTER COLUMN id SET DEFAULT nextval('public.view_customizes_id_seq'::regclass);
|
4742
|
|
4743
|
|
4744
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
4745
|
Il comando era: ALTER TABLE ONLY public.watchers ALTER COLUMN id SET DEFAULT nextval('public.watchers_id_seq'::regclass);
|
4746
|
|
4747
|
|
4748
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
4749
|
Il comando era: ALTER TABLE ONLY public.wiki_content_versions ALTER COLUMN id SET DEFAULT nextval('public.wiki_content_versions_id_seq'::regclass);
|
4750
|
|
4751
|
|
4752
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
4753
|
Il comando era: ALTER TABLE ONLY public.wiki_contents ALTER COLUMN id SET DEFAULT nextval('public.wiki_contents_id_seq'::regclass);
|
4754
|
|
4755
|
|
4756
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
4757
|
Il comando era: ALTER TABLE ONLY public.wiki_pages ALTER COLUMN id SET DEFAULT nextval('public.wiki_pages_id_seq'::regclass);
|
4758
|
|
4759
|
|
4760
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
4761
|
Il comando era: ALTER TABLE ONLY public.wiki_redirects ALTER COLUMN id SET DEFAULT nextval('public.wiki_redirects_id_seq'::regclass);
|
4762
|
|
4763
|
|
4764
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
4765
|
Il comando era: ALTER TABLE ONLY public.wikis ALTER COLUMN id SET DEFAULT nextval('public.wikis_id_seq'::regclass);
|
4766
|
|
4767
|
|
4768
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
4769
|
Il comando era: ALTER TABLE ONLY public.workflows ALTER COLUMN id SET DEFAULT nextval('public.workflows_id_seq'::regclass);
|
4770
|
|
4771
|
|
4772
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella attachments
|
4773
|
Il comando era: COPY public.attachments (id, container_id, container_type, filename, disk_filename, filesize, content_type, digest, downloads, author_id, created_on, description, disk_directory) FROM stdin;
|
4774
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella auth_sources
|
4775
|
Il comando era: COPY public.auth_sources (id, type, name, host, port, account, account_password, base_dn, attr_login, attr_firstname, attr_lastname, attr_mail, onthefly_register, tls, filter, timeout) FROM stdin;
|
4776
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella boards
|
4777
|
Il comando era: COPY public.boards (id, project_id, name, description, "position", topics_count, messages_count, last_message_id, parent_id) FROM stdin;
|
4778
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changes
|
4779
|
Il comando era: COPY public.changes (id, changeset_id, action, path, from_path, from_revision, revision, branch) FROM stdin;
|
4780
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changeset_parents
|
4781
|
Il comando era: COPY public.changeset_parents (changeset_id, parent_id) FROM stdin;
|
4782
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changesets
|
4783
|
Il comando era: COPY public.changesets (id, repository_id, revision, committer, committed_on, comments, commit_date, scmid, user_id) FROM stdin;
|
4784
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella changesets_issues
|
4785
|
Il comando era: COPY public.changesets_issues (changeset_id, issue_id) FROM stdin;
|
4786
|
pg_restore: errore: could not execute query: ERRORE: la colonna "comments" della relazione "comments" non esiste
|
4787
|
Il comando era: COPY public.comments (id, commented_type, commented_id, author_id, comments, created_on, updated_on) FROM stdin;
|
4788
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_field_enumerations
|
4789
|
Il comando era: COPY public.custom_field_enumerations (id, custom_field_id, name, active, "position") FROM stdin;
|
4790
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields
|
4791
|
Il comando era: COPY public.custom_fields (id, type, name, field_format, possible_values, regexp, min_length, max_length, is_required, is_for_all, is_filter, "position", searchable, default_value, editable, visible, multiple, format_store, description) FROM stdin;
|
4792
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields_projects
|
4793
|
Il comando era: COPY public.custom_fields_projects (custom_field_id, project_id) FROM stdin;
|
4794
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields_roles
|
4795
|
Il comando era: COPY public.custom_fields_roles (custom_field_id, role_id) FROM stdin;
|
4796
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_fields_trackers
|
4797
|
Il comando era: COPY public.custom_fields_trackers (custom_field_id, tracker_id) FROM stdin;
|
4798
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella custom_values
|
4799
|
Il comando era: COPY public.custom_values (id, customized_type, customized_id, custom_field_id, value) FROM stdin;
|
4800
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella documents
|
4801
|
Il comando era: COPY public.documents (id, project_id, category_id, title, description, created_on) FROM stdin;
|
4802
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella email_addresses
|
4803
|
Il comando era: COPY public.email_addresses (id, user_id, address, is_default, notify, created_on, updated_on) FROM stdin;
|
4804
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella enabled_modules
|
4805
|
Il comando era: COPY public.enabled_modules (id, project_id, name) FROM stdin;
|
4806
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella enumerations
|
4807
|
Il comando era: COPY public.enumerations (id, name, "position", is_default, type, active, project_id, parent_id, position_name) FROM stdin;
|
4808
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella groups_users
|
4809
|
Il comando era: COPY public.groups_users (group_id, user_id) FROM stdin;
|
4810
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella import_items
|
4811
|
Il comando era: COPY public.import_items (id, import_id, "position", obj_id, message) FROM stdin;
|
4812
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella imports
|
4813
|
Il comando era: COPY public.imports (id, type, user_id, filename, settings, total_items, finished, created_at, updated_at) FROM stdin;
|
4814
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issue_categories
|
4815
|
Il comando era: COPY public.issue_categories (id, project_id, name, assigned_to_id) FROM stdin;
|
4816
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issue_relations
|
4817
|
Il comando era: COPY public.issue_relations (id, issue_from_id, issue_to_id, relation_type, delay) FROM stdin;
|
4818
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issue_statuses
|
4819
|
Il comando era: COPY public.issue_statuses (id, name, is_closed, "position", default_done_ratio) FROM stdin;
|
4820
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella issues
|
4821
|
Il comando era: COPY public.issues (id, tracker_id, project_id, subject, description, due_date, category_id, status_id, assigned_to_id, priority_id, fixed_version_id, author_id, lock_version, created_on, updated_on, start_date, done_ratio, estimated_hours, parent_id, root_id, lft, rgt, is_private, closed_on) FROM stdin;
|
4822
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella journal_details
|
4823
|
Il comando era: COPY public.journal_details (id, journal_id, property, prop_key, old_value, value) FROM stdin;
|
4824
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella journals
|
4825
|
Il comando era: COPY public.journals (id, journalized_id, journalized_type, user_id, notes, created_on, private_notes) FROM stdin;
|
4826
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella member_roles
|
4827
|
Il comando era: COPY public.member_roles (id, member_id, role_id, inherited_from) FROM stdin;
|
4828
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella members
|
4829
|
Il comando era: COPY public.members (id, user_id, project_id, created_on, mail_notification) FROM stdin;
|
4830
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella messages
|
4831
|
Il comando era: COPY public.messages (id, board_id, parent_id, subject, content, author_id, replies_count, last_reply_id, created_on, updated_on, locked, sticky) FROM stdin;
|
4832
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella news
|
4833
|
Il comando era: COPY public.news (id, project_id, title, summary, description, author_id, created_on, comments_count) FROM stdin;
|
4834
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
4835
|
Il comando era: COPY public.open_id_authentication_associations (id, issued, lifetime, handle, assoc_type, server_url, secret) FROM stdin;
|
4836
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
4837
|
Il comando era: COPY public.open_id_authentication_nonces (id, "timestamp", server_url, salt) FROM stdin;
|
4838
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella projects
|
4839
|
Il comando era: COPY public.projects (id, name, description, homepage, is_public, parent_id, created_on, updated_on, identifier, status, lft, rgt, inherit_members, default_version_id, default_assigned_to_id) FROM stdin;
|
4840
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella projects_trackers
|
4841
|
Il comando era: COPY public.projects_trackers (project_id, tracker_id) FROM stdin;
|
4842
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella queries
|
4843
|
Il comando era: COPY public.queries (id, project_id, name, filters, user_id, column_names, sort_criteria, group_by, type, visibility, options) FROM stdin;
|
4844
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella queries_roles
|
4845
|
Il comando era: COPY public.queries_roles (query_id, role_id) FROM stdin;
|
4846
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella repositories
|
4847
|
Il comando era: COPY public.repositories (id, project_id, url, login, password, root_url, type, path_encoding, log_encoding, extra_info, identifier, is_default, created_on) FROM stdin;
|
4848
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella roles
|
4849
|
Il comando era: COPY public.roles (id, name, "position", assignable, builtin, permissions, issues_visibility, users_visibility, time_entries_visibility, all_roles_managed, settings) FROM stdin;
|
4850
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella roles_managed_roles
|
4851
|
Il comando era: COPY public.roles_managed_roles (role_id, managed_role_id) FROM stdin;
|
4852
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella schema_migrations
|
4853
|
Il comando era: COPY public.schema_migrations (version) FROM stdin;
|
4854
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella settings
|
4855
|
Il comando era: COPY public.settings (id, name, value, updated_on) FROM stdin;
|
4856
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella time_entries
|
4857
|
Il comando era: COPY public.time_entries (id, project_id, user_id, issue_id, hours, comments, activity_id, spent_on, tyear, tmonth, tweek, created_on, updated_on) FROM stdin;
|
4858
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella tokens
|
4859
|
Il comando era: COPY public.tokens (id, user_id, action, value, created_on, updated_on) FROM stdin;
|
4860
|
pg_restore: errore: could not execute query: ERRORE: la colonna "is_in_chlog" della relazione "trackers" non esiste
|
4861
|
Il comando era: COPY public.trackers (id, name, is_in_chlog, "position", is_in_roadmap, fields_bits, default_status_id) FROM stdin;
|
4862
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella user_preferences
|
4863
|
Il comando era: COPY public.user_preferences (id, user_id, others, hide_mail, time_zone) FROM stdin;
|
4864
|
pg_restore: errore: could not execute query: ERRORE: la colonna "identity_url" della relazione "users" non esiste
|
4865
|
Il comando era: COPY public.users (id, login, hashed_password, firstname, lastname, admin, status, last_login_on, language, auth_source_id, created_on, updated_on, type, identity_url, mail_notification, salt, must_change_passwd, passwd_changed_on) FROM stdin;
|
4866
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella versions
|
4867
|
Il comando era: COPY public.versions (id, project_id, name, description, effective_date, created_on, updated_on, wiki_page_title, status, sharing) FROM stdin;
|
4868
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella view_customizes
|
4869
|
Il comando era: COPY public.view_customizes (id, path_pattern, code, is_enabled, is_private, author_id, insertion_position, customize_type, comments) FROM stdin;
|
4870
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella watchers
|
4871
|
Il comando era: COPY public.watchers (id, watchable_type, watchable_id, user_id) FROM stdin;
|
4872
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_content_versions
|
4873
|
Il comando era: COPY public.wiki_content_versions (id, wiki_content_id, page_id, author_id, data, compression, comments, updated_on, version) FROM stdin;
|
4874
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_contents
|
4875
|
Il comando era: COPY public.wiki_contents (id, page_id, author_id, text, comments, updated_on, version) FROM stdin;
|
4876
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_pages
|
4877
|
Il comando era: COPY public.wiki_pages (id, wiki_id, title, created_on, protected, parent_id) FROM stdin;
|
4878
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wiki_redirects
|
4879
|
Il comando era: COPY public.wiki_redirects (id, wiki_id, title, redirects_to, created_on, redirects_to_wiki_id) FROM stdin;
|
4880
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella wikis
|
4881
|
Il comando era: COPY public.wikis (id, project_id, start_page, status) FROM stdin;
|
4882
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la tabella workflows
|
4883
|
Il comando era: COPY public.workflows (id, tracker_id, old_status_id, new_status_id, role_id, assignee, author, type, field_name, rule) FROM stdin;
|
4884
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza attachments_id_seq
|
4885
|
Il comando era: SELECT pg_catalog.setval('public.attachments_id_seq', 20698, true);
|
4886
|
|
4887
|
|
4888
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza auth_sources_id_seq
|
4889
|
Il comando era: SELECT pg_catalog.setval('public.auth_sources_id_seq', 1, true);
|
4890
|
|
4891
|
|
4892
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza boards_id_seq
|
4893
|
Il comando era: SELECT pg_catalog.setval('public.boards_id_seq', 1, false);
|
4894
|
|
4895
|
|
4896
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza changes_id_seq
|
4897
|
Il comando era: SELECT pg_catalog.setval('public.changes_id_seq', 1, false);
|
4898
|
|
4899
|
|
4900
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza changesets_id_seq
|
4901
|
Il comando era: SELECT pg_catalog.setval('public.changesets_id_seq', 1, false);
|
4902
|
|
4903
|
|
4904
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza comments_id_seq
|
4905
|
Il comando era: SELECT pg_catalog.setval('public.comments_id_seq', 1, false);
|
4906
|
|
4907
|
|
4908
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza custom_field_enumerations_id_seq
|
4909
|
Il comando era: SELECT pg_catalog.setval('public.custom_field_enumerations_id_seq', 1, false);
|
4910
|
|
4911
|
|
4912
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza custom_fields_id_seq
|
4913
|
Il comando era: SELECT pg_catalog.setval('public.custom_fields_id_seq', 15, true);
|
4914
|
|
4915
|
|
4916
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza custom_values_id_seq
|
4917
|
Il comando era: SELECT pg_catalog.setval('public.custom_values_id_seq', 50045, true);
|
4918
|
|
4919
|
|
4920
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza documents_id_seq
|
4921
|
Il comando era: SELECT pg_catalog.setval('public.documents_id_seq', 11, true);
|
4922
|
|
4923
|
|
4924
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza email_addresses_id_seq
|
4925
|
Il comando era: SELECT pg_catalog.setval('public.email_addresses_id_seq', 194, true);
|
4926
|
|
4927
|
|
4928
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza enabled_modules_id_seq
|
4929
|
Il comando era: SELECT pg_catalog.setval('public.enabled_modules_id_seq', 51, true);
|
4930
|
|
4931
|
|
4932
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza enumerations_id_seq
|
4933
|
Il comando era: SELECT pg_catalog.setval('public.enumerations_id_seq', 13, true);
|
4934
|
|
4935
|
|
4936
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza import_items_id_seq
|
4937
|
Il comando era: SELECT pg_catalog.setval('public.import_items_id_seq', 1, false);
|
4938
|
|
4939
|
|
4940
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza imports_id_seq
|
4941
|
Il comando era: SELECT pg_catalog.setval('public.imports_id_seq', 1, false);
|
4942
|
|
4943
|
|
4944
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issue_categories_id_seq
|
4945
|
Il comando era: SELECT pg_catalog.setval('public.issue_categories_id_seq', 4, true);
|
4946
|
|
4947
|
|
4948
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issue_relations_id_seq
|
4949
|
Il comando era: SELECT pg_catalog.setval('public.issue_relations_id_seq', 573, true);
|
4950
|
|
4951
|
|
4952
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issue_statuses_id_seq
|
4953
|
Il comando era: SELECT pg_catalog.setval('public.issue_statuses_id_seq', 6, true);
|
4954
|
|
4955
|
|
4956
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza issues_id_seq
|
4957
|
Il comando era: SELECT pg_catalog.setval('public.issues_id_seq', 38059, true);
|
4958
|
|
4959
|
|
4960
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza journal_details_id_seq
|
4961
|
Il comando era: SELECT pg_catalog.setval('public.journal_details_id_seq', 105547, true);
|
4962
|
|
4963
|
|
4964
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza journals_id_seq
|
4965
|
Il comando era: SELECT pg_catalog.setval('public.journals_id_seq', 57991, true);
|
4966
|
|
4967
|
|
4968
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza member_roles_id_seq
|
4969
|
Il comando era: SELECT pg_catalog.setval('public.member_roles_id_seq', 729, true);
|
4970
|
|
4971
|
|
4972
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza members_id_seq
|
4973
|
Il comando era: SELECT pg_catalog.setval('public.members_id_seq', 562, true);
|
4974
|
|
4975
|
|
4976
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza messages_id_seq
|
4977
|
Il comando era: SELECT pg_catalog.setval('public.messages_id_seq', 1, false);
|
4978
|
|
4979
|
|
4980
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza news_id_seq
|
4981
|
Il comando era: SELECT pg_catalog.setval('public.news_id_seq', 2, true);
|
4982
|
|
4983
|
|
4984
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations_id_seq" non esiste
|
4985
|
RIGA 1: SELECT pg_catalog.setval('public.open_id_authentication_asso...
|
4986
|
^
|
4987
|
Il comando era: SELECT pg_catalog.setval('public.open_id_authentication_associations_id_seq', 1, false);
|
4988
|
|
4989
|
|
4990
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces_id_seq" non esiste
|
4991
|
RIGA 1: SELECT pg_catalog.setval('public.open_id_authentication_nonc...
|
4992
|
^
|
4993
|
Il comando era: SELECT pg_catalog.setval('public.open_id_authentication_nonces_id_seq', 1, false);
|
4994
|
|
4995
|
|
4996
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza projects_id_seq
|
4997
|
Il comando era: SELECT pg_catalog.setval('public.projects_id_seq', 8, true);
|
4998
|
|
4999
|
|
5000
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza queries_id_seq
|
5001
|
Il comando era: SELECT pg_catalog.setval('public.queries_id_seq', 42, true);
|
5002
|
|
5003
|
|
5004
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza repositories_id_seq
|
5005
|
Il comando era: SELECT pg_catalog.setval('public.repositories_id_seq', 1, false);
|
5006
|
|
5007
|
|
5008
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza roles_id_seq
|
5009
|
Il comando era: SELECT pg_catalog.setval('public.roles_id_seq', 13, true);
|
5010
|
|
5011
|
|
5012
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza settings_id_seq
|
5013
|
Il comando era: SELECT pg_catalog.setval('public.settings_id_seq', 79, true);
|
5014
|
|
5015
|
|
5016
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza time_entries_id_seq
|
5017
|
Il comando era: SELECT pg_catalog.setval('public.time_entries_id_seq', 170, true);
|
5018
|
|
5019
|
|
5020
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza tokens_id_seq
|
5021
|
Il comando era: SELECT pg_catalog.setval('public.tokens_id_seq', 25258, true);
|
5022
|
|
5023
|
|
5024
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza trackers_id_seq
|
5025
|
Il comando era: SELECT pg_catalog.setval('public.trackers_id_seq', 76, true);
|
5026
|
|
5027
|
|
5028
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza user_preferences_id_seq
|
5029
|
Il comando era: SELECT pg_catalog.setval('public.user_preferences_id_seq', 194, true);
|
5030
|
|
5031
|
|
5032
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza users_id_seq
|
5033
|
Il comando era: SELECT pg_catalog.setval('public.users_id_seq', 201, true);
|
5034
|
|
5035
|
|
5036
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza versions_id_seq
|
5037
|
Il comando era: SELECT pg_catalog.setval('public.versions_id_seq', 1, false);
|
5038
|
|
5039
|
|
5040
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza view_customizes_id_seq
|
5041
|
Il comando era: SELECT pg_catalog.setval('public.view_customizes_id_seq', 1, true);
|
5042
|
|
5043
|
|
5044
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza watchers_id_seq
|
5045
|
Il comando era: SELECT pg_catalog.setval('public.watchers_id_seq', 14606, true);
|
5046
|
|
5047
|
|
5048
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_content_versions_id_seq
|
5049
|
Il comando era: SELECT pg_catalog.setval('public.wiki_content_versions_id_seq', 70, true);
|
5050
|
|
5051
|
|
5052
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_contents_id_seq
|
5053
|
Il comando era: SELECT pg_catalog.setval('public.wiki_contents_id_seq', 12, true);
|
5054
|
|
5055
|
|
5056
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_pages_id_seq
|
5057
|
Il comando era: SELECT pg_catalog.setval('public.wiki_pages_id_seq', 12, true);
|
5058
|
|
5059
|
|
5060
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wiki_redirects_id_seq
|
5061
|
Il comando era: SELECT pg_catalog.setval('public.wiki_redirects_id_seq', 5, true);
|
5062
|
|
5063
|
|
5064
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza wikis_id_seq
|
5065
|
Il comando era: SELECT pg_catalog.setval('public.wikis_id_seq', 8, true);
|
5066
|
|
5067
|
|
5068
|
pg_restore: errore: could not execute query: ERRORE: permesso negato per la sequenza workflows_id_seq
|
5069
|
Il comando era: SELECT pg_catalog.setval('public.workflows_id_seq', 14964, true);
|
5070
|
|
5071
|
|
5072
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
5073
|
Il comando era: ALTER TABLE ONLY public.attachments
|
5074
|
ADD CONSTRAINT attachments_pkey PRIMARY KEY (id);
|
5075
|
|
5076
|
|
5077
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
5078
|
Il comando era: ALTER TABLE ONLY public.auth_sources
|
5079
|
ADD CONSTRAINT auth_sources_pkey PRIMARY KEY (id);
|
5080
|
|
5081
|
|
5082
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
5083
|
Il comando era: ALTER TABLE ONLY public.boards
|
5084
|
ADD CONSTRAINT boards_pkey PRIMARY KEY (id);
|
5085
|
|
5086
|
|
5087
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
5088
|
Il comando era: ALTER TABLE ONLY public.changes
|
5089
|
ADD CONSTRAINT changes_pkey PRIMARY KEY (id);
|
5090
|
|
5091
|
|
5092
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
5093
|
Il comando era: ALTER TABLE ONLY public.changesets
|
5094
|
ADD CONSTRAINT changesets_pkey PRIMARY KEY (id);
|
5095
|
|
5096
|
|
5097
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
5098
|
Il comando era: ALTER TABLE ONLY public.comments
|
5099
|
ADD CONSTRAINT comments_pkey PRIMARY KEY (id);
|
5100
|
|
5101
|
|
5102
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_field_enumerations
|
5103
|
Il comando era: ALTER TABLE ONLY public.custom_field_enumerations
|
5104
|
ADD CONSTRAINT custom_field_enumerations_pkey PRIMARY KEY (id);
|
5105
|
|
5106
|
|
5107
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
5108
|
Il comando era: ALTER TABLE ONLY public.custom_fields
|
5109
|
ADD CONSTRAINT custom_fields_pkey PRIMARY KEY (id);
|
5110
|
|
5111
|
|
5112
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
5113
|
Il comando era: ALTER TABLE ONLY public.custom_values
|
5114
|
ADD CONSTRAINT custom_values_pkey PRIMARY KEY (id);
|
5115
|
|
5116
|
|
5117
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
5118
|
Il comando era: ALTER TABLE ONLY public.documents
|
5119
|
ADD CONSTRAINT documents_pkey PRIMARY KEY (id);
|
5120
|
|
5121
|
|
5122
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
5123
|
Il comando era: ALTER TABLE ONLY public.email_addresses
|
5124
|
ADD CONSTRAINT email_addresses_pkey PRIMARY KEY (id);
|
5125
|
|
5126
|
|
5127
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
5128
|
Il comando era: ALTER TABLE ONLY public.enabled_modules
|
5129
|
ADD CONSTRAINT enabled_modules_pkey PRIMARY KEY (id);
|
5130
|
|
5131
|
|
5132
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
5133
|
Il comando era: ALTER TABLE ONLY public.enumerations
|
5134
|
ADD CONSTRAINT enumerations_pkey PRIMARY KEY (id);
|
5135
|
|
5136
|
|
5137
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella import_items
|
5138
|
Il comando era: ALTER TABLE ONLY public.import_items
|
5139
|
ADD CONSTRAINT import_items_pkey PRIMARY KEY (id);
|
5140
|
|
5141
|
|
5142
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella imports
|
5143
|
Il comando era: ALTER TABLE ONLY public.imports
|
5144
|
ADD CONSTRAINT imports_pkey PRIMARY KEY (id);
|
5145
|
|
5146
|
|
5147
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
5148
|
Il comando era: ALTER TABLE ONLY public.issue_categories
|
5149
|
ADD CONSTRAINT issue_categories_pkey PRIMARY KEY (id);
|
5150
|
|
5151
|
|
5152
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
5153
|
Il comando era: ALTER TABLE ONLY public.issue_relations
|
5154
|
ADD CONSTRAINT issue_relations_pkey PRIMARY KEY (id);
|
5155
|
|
5156
|
|
5157
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
5158
|
Il comando era: ALTER TABLE ONLY public.issue_statuses
|
5159
|
ADD CONSTRAINT issue_statuses_pkey PRIMARY KEY (id);
|
5160
|
|
5161
|
|
5162
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5163
|
Il comando era: ALTER TABLE ONLY public.issues
|
5164
|
ADD CONSTRAINT issues_pkey PRIMARY KEY (id);
|
5165
|
|
5166
|
|
5167
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
5168
|
Il comando era: ALTER TABLE ONLY public.journal_details
|
5169
|
ADD CONSTRAINT journal_details_pkey PRIMARY KEY (id);
|
5170
|
|
5171
|
|
5172
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
5173
|
Il comando era: ALTER TABLE ONLY public.journals
|
5174
|
ADD CONSTRAINT journals_pkey PRIMARY KEY (id);
|
5175
|
|
5176
|
|
5177
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
5178
|
Il comando era: ALTER TABLE ONLY public.member_roles
|
5179
|
ADD CONSTRAINT member_roles_pkey PRIMARY KEY (id);
|
5180
|
|
5181
|
|
5182
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
5183
|
Il comando era: ALTER TABLE ONLY public.members
|
5184
|
ADD CONSTRAINT members_pkey PRIMARY KEY (id);
|
5185
|
|
5186
|
|
5187
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
5188
|
Il comando era: ALTER TABLE ONLY public.messages
|
5189
|
ADD CONSTRAINT messages_pkey PRIMARY KEY (id);
|
5190
|
|
5191
|
|
5192
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
5193
|
Il comando era: ALTER TABLE ONLY public.news
|
5194
|
ADD CONSTRAINT news_pkey PRIMARY KEY (id);
|
5195
|
|
5196
|
|
5197
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_associations" non esiste
|
5198
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_associations
|
5199
|
ADD CONSTRAINT open_id_authentication_associations_pkey PRIMARY KEY (id);
|
5200
|
|
5201
|
|
5202
|
pg_restore: errore: could not execute query: ERRORE: la relazione "public.open_id_authentication_nonces" non esiste
|
5203
|
Il comando era: ALTER TABLE ONLY public.open_id_authentication_nonces
|
5204
|
ADD CONSTRAINT open_id_authentication_nonces_pkey PRIMARY KEY (id);
|
5205
|
|
5206
|
|
5207
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
5208
|
Il comando era: ALTER TABLE ONLY public.projects
|
5209
|
ADD CONSTRAINT projects_pkey PRIMARY KEY (id);
|
5210
|
|
5211
|
|
5212
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
5213
|
Il comando era: ALTER TABLE ONLY public.queries
|
5214
|
ADD CONSTRAINT queries_pkey PRIMARY KEY (id);
|
5215
|
|
5216
|
|
5217
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
5218
|
Il comando era: ALTER TABLE ONLY public.repositories
|
5219
|
ADD CONSTRAINT repositories_pkey PRIMARY KEY (id);
|
5220
|
|
5221
|
|
5222
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles
|
5223
|
Il comando era: ALTER TABLE ONLY public.roles
|
5224
|
ADD CONSTRAINT roles_pkey PRIMARY KEY (id);
|
5225
|
|
5226
|
|
5227
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
5228
|
Il comando era: ALTER TABLE ONLY public.settings
|
5229
|
ADD CONSTRAINT settings_pkey PRIMARY KEY (id);
|
5230
|
|
5231
|
|
5232
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
5233
|
Il comando era: ALTER TABLE ONLY public.time_entries
|
5234
|
ADD CONSTRAINT time_entries_pkey PRIMARY KEY (id);
|
5235
|
|
5236
|
|
5237
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
5238
|
Il comando era: ALTER TABLE ONLY public.tokens
|
5239
|
ADD CONSTRAINT tokens_pkey PRIMARY KEY (id);
|
5240
|
|
5241
|
|
5242
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella trackers
|
5243
|
Il comando era: ALTER TABLE ONLY public.trackers
|
5244
|
ADD CONSTRAINT trackers_pkey PRIMARY KEY (id);
|
5245
|
|
5246
|
|
5247
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
5248
|
Il comando era: ALTER TABLE ONLY public.user_preferences
|
5249
|
ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (id);
|
5250
|
|
5251
|
|
5252
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
5253
|
Il comando era: ALTER TABLE ONLY public.users
|
5254
|
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
|
5255
|
|
5256
|
|
5257
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
5258
|
Il comando era: ALTER TABLE ONLY public.versions
|
5259
|
ADD CONSTRAINT versions_pkey PRIMARY KEY (id);
|
5260
|
|
5261
|
|
5262
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella view_customizes
|
5263
|
Il comando era: ALTER TABLE ONLY public.view_customizes
|
5264
|
ADD CONSTRAINT view_customizes_pkey PRIMARY KEY (id);
|
5265
|
|
5266
|
|
5267
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
5268
|
Il comando era: ALTER TABLE ONLY public.watchers
|
5269
|
ADD CONSTRAINT watchers_pkey PRIMARY KEY (id);
|
5270
|
|
5271
|
|
5272
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
5273
|
Il comando era: ALTER TABLE ONLY public.wiki_content_versions
|
5274
|
ADD CONSTRAINT wiki_content_versions_pkey PRIMARY KEY (id);
|
5275
|
|
5276
|
|
5277
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
5278
|
Il comando era: ALTER TABLE ONLY public.wiki_contents
|
5279
|
ADD CONSTRAINT wiki_contents_pkey PRIMARY KEY (id);
|
5280
|
|
5281
|
|
5282
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
5283
|
Il comando era: ALTER TABLE ONLY public.wiki_pages
|
5284
|
ADD CONSTRAINT wiki_pages_pkey PRIMARY KEY (id);
|
5285
|
|
5286
|
|
5287
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
5288
|
Il comando era: ALTER TABLE ONLY public.wiki_redirects
|
5289
|
ADD CONSTRAINT wiki_redirects_pkey PRIMARY KEY (id);
|
5290
|
|
5291
|
|
5292
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
5293
|
Il comando era: ALTER TABLE ONLY public.wikis
|
5294
|
ADD CONSTRAINT wikis_pkey PRIMARY KEY (id);
|
5295
|
|
5296
|
|
5297
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
5298
|
Il comando era: ALTER TABLE ONLY public.workflows
|
5299
|
ADD CONSTRAINT workflows_pkey PRIMARY KEY (id);
|
5300
|
|
5301
|
|
5302
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
5303
|
Il comando era: CREATE INDEX boards_project_id ON public.boards USING btree (project_id);
|
5304
|
|
5305
|
|
5306
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changeset_parents
|
5307
|
Il comando era: CREATE INDEX changeset_parents_changeset_ids ON public.changeset_parents USING btree (changeset_id);
|
5308
|
|
5309
|
|
5310
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changeset_parents
|
5311
|
Il comando era: CREATE INDEX changeset_parents_parent_ids ON public.changeset_parents USING btree (parent_id);
|
5312
|
|
5313
|
|
5314
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changes
|
5315
|
Il comando era: CREATE INDEX changesets_changeset_id ON public.changes USING btree (changeset_id);
|
5316
|
|
5317
|
|
5318
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets_issues
|
5319
|
Il comando era: CREATE UNIQUE INDEX changesets_issues_ids ON public.changesets_issues USING btree (changeset_id, issue_id);
|
5320
|
|
5321
|
|
5322
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
5323
|
Il comando era: CREATE UNIQUE INDEX changesets_repos_rev ON public.changesets USING btree (repository_id, revision);
|
5324
|
|
5325
|
|
5326
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
5327
|
Il comando era: CREATE INDEX changesets_repos_scmid ON public.changesets USING btree (repository_id, scmid);
|
5328
|
|
5329
|
|
5330
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_roles
|
5331
|
Il comando era: CREATE UNIQUE INDEX custom_fields_roles_ids ON public.custom_fields_roles USING btree (custom_field_id, role_id);
|
5332
|
|
5333
|
|
5334
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
5335
|
Il comando era: CREATE INDEX custom_values_customized ON public.custom_values USING btree (customized_type, customized_id);
|
5336
|
|
5337
|
|
5338
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
5339
|
Il comando era: CREATE INDEX documents_project_id ON public.documents USING btree (project_id);
|
5340
|
|
5341
|
|
5342
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enabled_modules
|
5343
|
Il comando era: CREATE INDEX enabled_modules_project_id ON public.enabled_modules USING btree (project_id);
|
5344
|
|
5345
|
|
5346
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella groups_users
|
5347
|
Il comando era: CREATE UNIQUE INDEX groups_users_ids ON public.groups_users USING btree (group_id, user_id);
|
5348
|
|
5349
|
|
5350
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
5351
|
Il comando era: CREATE INDEX index_attachments_on_author_id ON public.attachments USING btree (author_id);
|
5352
|
|
5353
|
|
5354
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
5355
|
Il comando era: CREATE INDEX index_attachments_on_container_id_and_container_type ON public.attachments USING btree (container_id, container_type);
|
5356
|
|
5357
|
|
5358
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
5359
|
Il comando era: CREATE INDEX index_attachments_on_created_on ON public.attachments USING btree (created_on);
|
5360
|
|
5361
|
|
5362
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella attachments
|
5363
|
Il comando era: CREATE INDEX index_attachments_on_disk_filename ON public.attachments USING btree (disk_filename);
|
5364
|
|
5365
|
|
5366
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella auth_sources
|
5367
|
Il comando era: CREATE INDEX index_auth_sources_on_id_and_type ON public.auth_sources USING btree (id, type);
|
5368
|
|
5369
|
|
5370
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella boards
|
5371
|
Il comando era: CREATE INDEX index_boards_on_last_message_id ON public.boards USING btree (last_message_id);
|
5372
|
|
5373
|
|
5374
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets_issues
|
5375
|
Il comando era: CREATE INDEX index_changesets_issues_on_issue_id ON public.changesets_issues USING btree (issue_id);
|
5376
|
|
5377
|
|
5378
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
5379
|
Il comando era: CREATE INDEX index_changesets_on_committed_on ON public.changesets USING btree (committed_on);
|
5380
|
|
5381
|
|
5382
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
5383
|
Il comando era: CREATE INDEX index_changesets_on_repository_id ON public.changesets USING btree (repository_id);
|
5384
|
|
5385
|
|
5386
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella changesets
|
5387
|
Il comando era: CREATE INDEX index_changesets_on_user_id ON public.changesets USING btree (user_id);
|
5388
|
|
5389
|
|
5390
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
5391
|
Il comando era: CREATE INDEX index_comments_on_author_id ON public.comments USING btree (author_id);
|
5392
|
|
5393
|
|
5394
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella comments
|
5395
|
Il comando era: CREATE INDEX index_comments_on_commented_id_and_commented_type ON public.comments USING btree (commented_id, commented_type);
|
5396
|
|
5397
|
|
5398
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields
|
5399
|
Il comando era: CREATE INDEX index_custom_fields_on_id_and_type ON public.custom_fields USING btree (id, type);
|
5400
|
|
5401
|
|
5402
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_projects
|
5403
|
Il comando era: CREATE UNIQUE INDEX index_custom_fields_projects_on_custom_field_id_and_project_id ON public.custom_fields_projects USING btree (custom_field_id, project_id);
|
5404
|
|
5405
|
|
5406
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_fields_trackers
|
5407
|
Il comando era: CREATE UNIQUE INDEX index_custom_fields_trackers_on_custom_field_id_and_tracker_id ON public.custom_fields_trackers USING btree (custom_field_id, tracker_id);
|
5408
|
|
5409
|
|
5410
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella custom_values
|
5411
|
Il comando era: CREATE INDEX index_custom_values_on_custom_field_id ON public.custom_values USING btree (custom_field_id);
|
5412
|
|
5413
|
|
5414
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
5415
|
Il comando era: CREATE INDEX index_documents_on_category_id ON public.documents USING btree (category_id);
|
5416
|
|
5417
|
|
5418
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella documents
|
5419
|
Il comando era: CREATE INDEX index_documents_on_created_on ON public.documents USING btree (created_on);
|
5420
|
|
5421
|
|
5422
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella email_addresses
|
5423
|
Il comando era: CREATE INDEX index_email_addresses_on_user_id ON public.email_addresses USING btree (user_id);
|
5424
|
|
5425
|
|
5426
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
5427
|
Il comando era: CREATE INDEX index_enumerations_on_id_and_type ON public.enumerations USING btree (id, type);
|
5428
|
|
5429
|
|
5430
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella enumerations
|
5431
|
Il comando era: CREATE INDEX index_enumerations_on_project_id ON public.enumerations USING btree (project_id);
|
5432
|
|
5433
|
|
5434
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
5435
|
Il comando era: CREATE INDEX index_issue_categories_on_assigned_to_id ON public.issue_categories USING btree (assigned_to_id);
|
5436
|
|
5437
|
|
5438
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
5439
|
Il comando era: CREATE INDEX index_issue_relations_on_issue_from_id ON public.issue_relations USING btree (issue_from_id);
|
5440
|
|
5441
|
|
5442
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
5443
|
Il comando era: CREATE UNIQUE INDEX index_issue_relations_on_issue_from_id_and_issue_to_id ON public.issue_relations USING btree (issue_from_id, issue_to_id);
|
5444
|
|
5445
|
|
5446
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_relations
|
5447
|
Il comando era: CREATE INDEX index_issue_relations_on_issue_to_id ON public.issue_relations USING btree (issue_to_id);
|
5448
|
|
5449
|
|
5450
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
5451
|
Il comando era: CREATE INDEX index_issue_statuses_on_is_closed ON public.issue_statuses USING btree (is_closed);
|
5452
|
|
5453
|
|
5454
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_statuses
|
5455
|
Il comando era: CREATE INDEX index_issue_statuses_on_position ON public.issue_statuses USING btree ("position");
|
5456
|
|
5457
|
|
5458
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5459
|
Il comando era: CREATE INDEX index_issues_on_assigned_to_id ON public.issues USING btree (assigned_to_id);
|
5460
|
|
5461
|
|
5462
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5463
|
Il comando era: CREATE INDEX index_issues_on_author_id ON public.issues USING btree (author_id);
|
5464
|
|
5465
|
|
5466
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5467
|
Il comando era: CREATE INDEX index_issues_on_category_id ON public.issues USING btree (category_id);
|
5468
|
|
5469
|
|
5470
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5471
|
Il comando era: CREATE INDEX index_issues_on_created_on ON public.issues USING btree (created_on);
|
5472
|
|
5473
|
|
5474
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5475
|
Il comando era: CREATE INDEX index_issues_on_fixed_version_id ON public.issues USING btree (fixed_version_id);
|
5476
|
|
5477
|
|
5478
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5479
|
Il comando era: CREATE INDEX index_issues_on_parent_id ON public.issues USING btree (parent_id);
|
5480
|
|
5481
|
|
5482
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5483
|
Il comando era: CREATE INDEX index_issues_on_priority_id ON public.issues USING btree (priority_id);
|
5484
|
|
5485
|
|
5486
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5487
|
Il comando era: CREATE INDEX index_issues_on_root_id_and_lft_and_rgt ON public.issues USING btree (root_id, lft, rgt);
|
5488
|
|
5489
|
|
5490
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5491
|
Il comando era: CREATE INDEX index_issues_on_status_id ON public.issues USING btree (status_id);
|
5492
|
|
5493
|
|
5494
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5495
|
Il comando era: CREATE INDEX index_issues_on_tracker_id ON public.issues USING btree (tracker_id);
|
5496
|
|
5497
|
|
5498
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
5499
|
Il comando era: CREATE INDEX index_journals_on_created_on ON public.journals USING btree (created_on);
|
5500
|
|
5501
|
|
5502
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
5503
|
Il comando era: CREATE INDEX index_journals_on_journalized_id ON public.journals USING btree (journalized_id);
|
5504
|
|
5505
|
|
5506
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
5507
|
Il comando era: CREATE INDEX index_journals_on_user_id ON public.journals USING btree (user_id);
|
5508
|
|
5509
|
|
5510
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
5511
|
Il comando era: CREATE INDEX index_member_roles_on_inherited_from ON public.member_roles USING btree (inherited_from);
|
5512
|
|
5513
|
|
5514
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
5515
|
Il comando era: CREATE INDEX index_member_roles_on_member_id ON public.member_roles USING btree (member_id);
|
5516
|
|
5517
|
|
5518
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella member_roles
|
5519
|
Il comando era: CREATE INDEX index_member_roles_on_role_id ON public.member_roles USING btree (role_id);
|
5520
|
|
5521
|
|
5522
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
5523
|
Il comando era: CREATE INDEX index_members_on_project_id ON public.members USING btree (project_id);
|
5524
|
|
5525
|
|
5526
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
5527
|
Il comando era: CREATE INDEX index_members_on_user_id ON public.members USING btree (user_id);
|
5528
|
|
5529
|
|
5530
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella members
|
5531
|
Il comando era: CREATE UNIQUE INDEX index_members_on_user_id_and_project_id ON public.members USING btree (user_id, project_id);
|
5532
|
|
5533
|
|
5534
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
5535
|
Il comando era: CREATE INDEX index_messages_on_author_id ON public.messages USING btree (author_id);
|
5536
|
|
5537
|
|
5538
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
5539
|
Il comando era: CREATE INDEX index_messages_on_created_on ON public.messages USING btree (created_on);
|
5540
|
|
5541
|
|
5542
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
5543
|
Il comando era: CREATE INDEX index_messages_on_last_reply_id ON public.messages USING btree (last_reply_id);
|
5544
|
|
5545
|
|
5546
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
5547
|
Il comando era: CREATE INDEX index_news_on_author_id ON public.news USING btree (author_id);
|
5548
|
|
5549
|
|
5550
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
5551
|
Il comando era: CREATE INDEX index_news_on_created_on ON public.news USING btree (created_on);
|
5552
|
|
5553
|
|
5554
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
5555
|
Il comando era: CREATE INDEX index_projects_on_lft ON public.projects USING btree (lft);
|
5556
|
|
5557
|
|
5558
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects
|
5559
|
Il comando era: CREATE INDEX index_projects_on_rgt ON public.projects USING btree (rgt);
|
5560
|
|
5561
|
|
5562
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
5563
|
Il comando era: CREATE INDEX index_queries_on_project_id ON public.queries USING btree (project_id);
|
5564
|
|
5565
|
|
5566
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries
|
5567
|
Il comando era: CREATE INDEX index_queries_on_user_id ON public.queries USING btree (user_id);
|
5568
|
|
5569
|
|
5570
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella repositories
|
5571
|
Il comando era: CREATE INDEX index_repositories_on_project_id ON public.repositories USING btree (project_id);
|
5572
|
|
5573
|
|
5574
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella roles_managed_roles
|
5575
|
Il comando era: CREATE UNIQUE INDEX index_roles_managed_roles_on_role_id_and_managed_role_id ON public.roles_managed_roles USING btree (role_id, managed_role_id);
|
5576
|
|
5577
|
|
5578
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella settings
|
5579
|
Il comando era: CREATE INDEX index_settings_on_name ON public.settings USING btree (name);
|
5580
|
|
5581
|
|
5582
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
5583
|
Il comando era: CREATE INDEX index_time_entries_on_activity_id ON public.time_entries USING btree (activity_id);
|
5584
|
|
5585
|
|
5586
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
5587
|
Il comando era: CREATE INDEX index_time_entries_on_created_on ON public.time_entries USING btree (created_on);
|
5588
|
|
5589
|
|
5590
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
5591
|
Il comando era: CREATE INDEX index_time_entries_on_user_id ON public.time_entries USING btree (user_id);
|
5592
|
|
5593
|
|
5594
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
5595
|
Il comando era: CREATE INDEX index_tokens_on_user_id ON public.tokens USING btree (user_id);
|
5596
|
|
5597
|
|
5598
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella user_preferences
|
5599
|
Il comando era: CREATE INDEX index_user_preferences_on_user_id ON public.user_preferences USING btree (user_id);
|
5600
|
|
5601
|
|
5602
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
5603
|
Il comando era: CREATE INDEX index_users_on_auth_source_id ON public.users USING btree (auth_source_id);
|
5604
|
|
5605
|
|
5606
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
5607
|
Il comando era: CREATE INDEX index_users_on_id_and_type ON public.users USING btree (id, type);
|
5608
|
|
5609
|
|
5610
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella users
|
5611
|
Il comando era: CREATE INDEX index_users_on_type ON public.users USING btree (type);
|
5612
|
|
5613
|
|
5614
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
5615
|
Il comando era: CREATE INDEX index_versions_on_sharing ON public.versions USING btree (sharing);
|
5616
|
|
5617
|
|
5618
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
5619
|
Il comando era: CREATE INDEX index_watchers_on_user_id ON public.watchers USING btree (user_id);
|
5620
|
|
5621
|
|
5622
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
5623
|
Il comando era: CREATE INDEX index_watchers_on_watchable_id_and_watchable_type ON public.watchers USING btree (watchable_id, watchable_type);
|
5624
|
|
5625
|
|
5626
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
5627
|
Il comando era: CREATE INDEX index_wiki_content_versions_on_updated_on ON public.wiki_content_versions USING btree (updated_on);
|
5628
|
|
5629
|
|
5630
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
5631
|
Il comando era: CREATE INDEX index_wiki_contents_on_author_id ON public.wiki_contents USING btree (author_id);
|
5632
|
|
5633
|
|
5634
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
5635
|
Il comando era: CREATE INDEX index_wiki_pages_on_parent_id ON public.wiki_pages USING btree (parent_id);
|
5636
|
|
5637
|
|
5638
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
5639
|
Il comando era: CREATE INDEX index_wiki_pages_on_wiki_id ON public.wiki_pages USING btree (wiki_id);
|
5640
|
|
5641
|
|
5642
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
5643
|
Il comando era: CREATE INDEX index_wiki_redirects_on_wiki_id ON public.wiki_redirects USING btree (wiki_id);
|
5644
|
|
5645
|
|
5646
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
5647
|
Il comando era: CREATE INDEX index_workflows_on_new_status_id ON public.workflows USING btree (new_status_id);
|
5648
|
|
5649
|
|
5650
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
5651
|
Il comando era: CREATE INDEX index_workflows_on_old_status_id ON public.workflows USING btree (old_status_id);
|
5652
|
|
5653
|
|
5654
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
5655
|
Il comando era: CREATE INDEX index_workflows_on_role_id ON public.workflows USING btree (role_id);
|
5656
|
|
5657
|
|
5658
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
5659
|
Il comando era: CREATE INDEX index_workflows_on_tracker_id ON public.workflows USING btree (tracker_id);
|
5660
|
|
5661
|
|
5662
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issue_categories
|
5663
|
Il comando era: CREATE INDEX issue_categories_project_id ON public.issue_categories USING btree (project_id);
|
5664
|
|
5665
|
|
5666
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella issues
|
5667
|
Il comando era: CREATE INDEX issues_project_id ON public.issues USING btree (project_id);
|
5668
|
|
5669
|
|
5670
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journal_details
|
5671
|
Il comando era: CREATE INDEX journal_details_journal_id ON public.journal_details USING btree (journal_id);
|
5672
|
|
5673
|
|
5674
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella journals
|
5675
|
Il comando era: CREATE INDEX journals_journalized_id ON public.journals USING btree (journalized_id, journalized_type);
|
5676
|
|
5677
|
|
5678
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
5679
|
Il comando era: CREATE INDEX messages_board_id ON public.messages USING btree (board_id);
|
5680
|
|
5681
|
|
5682
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella messages
|
5683
|
Il comando era: CREATE INDEX messages_parent_id ON public.messages USING btree (parent_id);
|
5684
|
|
5685
|
|
5686
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella news
|
5687
|
Il comando era: CREATE INDEX news_project_id ON public.news USING btree (project_id);
|
5688
|
|
5689
|
|
5690
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects_trackers
|
5691
|
Il comando era: CREATE INDEX projects_trackers_project_id ON public.projects_trackers USING btree (project_id);
|
5692
|
|
5693
|
|
5694
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella projects_trackers
|
5695
|
Il comando era: CREATE UNIQUE INDEX projects_trackers_unique ON public.projects_trackers USING btree (project_id, tracker_id);
|
5696
|
|
5697
|
|
5698
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella queries_roles
|
5699
|
Il comando era: CREATE UNIQUE INDEX queries_roles_ids ON public.queries_roles USING btree (query_id, role_id);
|
5700
|
|
5701
|
|
5702
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
5703
|
Il comando era: CREATE INDEX time_entries_issue_id ON public.time_entries USING btree (issue_id);
|
5704
|
|
5705
|
|
5706
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella time_entries
|
5707
|
Il comando era: CREATE INDEX time_entries_project_id ON public.time_entries USING btree (project_id);
|
5708
|
|
5709
|
|
5710
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella tokens
|
5711
|
Il comando era: CREATE UNIQUE INDEX tokens_value ON public.tokens USING btree (value);
|
5712
|
|
5713
|
|
5714
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella schema_migrations
|
5715
|
Il comando era: CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING btree (version);
|
5716
|
|
5717
|
|
5718
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella versions
|
5719
|
Il comando era: CREATE INDEX versions_project_id ON public.versions USING btree (project_id);
|
5720
|
|
5721
|
|
5722
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella watchers
|
5723
|
Il comando era: CREATE INDEX watchers_user_id_type ON public.watchers USING btree (user_id, watchable_type);
|
5724
|
|
5725
|
|
5726
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_content_versions
|
5727
|
Il comando era: CREATE INDEX wiki_content_versions_wcid ON public.wiki_content_versions USING btree (wiki_content_id);
|
5728
|
|
5729
|
|
5730
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_contents
|
5731
|
Il comando era: CREATE INDEX wiki_contents_page_id ON public.wiki_contents USING btree (page_id);
|
5732
|
|
5733
|
|
5734
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_pages
|
5735
|
Il comando era: CREATE INDEX wiki_pages_wiki_id_title ON public.wiki_pages USING btree (wiki_id, title);
|
5736
|
|
5737
|
|
5738
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wiki_redirects
|
5739
|
Il comando era: CREATE INDEX wiki_redirects_wiki_id_title ON public.wiki_redirects USING btree (wiki_id, title);
|
5740
|
|
5741
|
|
5742
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella wikis
|
5743
|
Il comando era: CREATE INDEX wikis_project_id ON public.wikis USING btree (project_id);
|
5744
|
|
5745
|
|
5746
|
pg_restore: errore: could not execute query: ERRORE: bisogna essere proprietari della tabella workflows
|
5747
|
Il comando era: CREATE INDEX wkfs_role_tracker_old_status ON public.workflows USING btree (role_id, tracker_id, old_status_id);
|
5748
|
|
5749
|
|
5750
|
pg_restore: avvertimento: errori ignorati durante il ripristino: 556
|