Scott Baker | 5042166 | 2016-06-27 22:09:48 -0700 | [diff] [blame] | 1 | -- |
| 2 | -- PostgreSQL database dump |
| 3 | -- |
| 4 | |
| 5 | SET statement_timeout = 0; |
| 6 | SET lock_timeout = 0; |
| 7 | SET client_encoding = 'SQL_ASCII'; |
| 8 | SET standard_conforming_strings = on; |
| 9 | SET check_function_bodies = false; |
| 10 | SET client_min_messages = warning; |
| 11 | |
| 12 | -- |
| 13 | -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: |
| 14 | -- |
| 15 | |
| 16 | CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; |
| 17 | |
| 18 | |
| 19 | -- |
| 20 | -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: |
| 21 | -- |
| 22 | |
| 23 | COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; |
| 24 | |
| 25 | |
| 26 | SET search_path = public, pg_catalog; |
| 27 | |
| 28 | SET default_tablespace = ''; |
| 29 | |
| 30 | SET default_with_oids = false; |
| 31 | |
| 32 | -- |
| 33 | -- Name: auth_group; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 34 | -- |
| 35 | |
| 36 | CREATE TABLE auth_group ( |
| 37 | id integer NOT NULL, |
| 38 | name character varying(80) NOT NULL |
| 39 | ); |
| 40 | |
| 41 | |
| 42 | ALTER TABLE public.auth_group OWNER TO postgres; |
| 43 | |
| 44 | -- |
| 45 | -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 46 | -- |
| 47 | |
| 48 | CREATE SEQUENCE auth_group_id_seq |
| 49 | START WITH 1 |
| 50 | INCREMENT BY 1 |
| 51 | NO MINVALUE |
| 52 | NO MAXVALUE |
| 53 | CACHE 1; |
| 54 | |
| 55 | |
| 56 | ALTER TABLE public.auth_group_id_seq OWNER TO postgres; |
| 57 | |
| 58 | -- |
| 59 | -- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 60 | -- |
| 61 | |
| 62 | ALTER SEQUENCE auth_group_id_seq OWNED BY auth_group.id; |
| 63 | |
| 64 | |
| 65 | -- |
| 66 | -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 67 | -- |
| 68 | |
| 69 | CREATE TABLE auth_group_permissions ( |
| 70 | id integer NOT NULL, |
| 71 | group_id integer NOT NULL, |
| 72 | permission_id integer NOT NULL |
| 73 | ); |
| 74 | |
| 75 | |
| 76 | ALTER TABLE public.auth_group_permissions OWNER TO postgres; |
| 77 | |
| 78 | -- |
| 79 | -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 80 | -- |
| 81 | |
| 82 | CREATE SEQUENCE auth_group_permissions_id_seq |
| 83 | START WITH 1 |
| 84 | INCREMENT BY 1 |
| 85 | NO MINVALUE |
| 86 | NO MAXVALUE |
| 87 | CACHE 1; |
| 88 | |
| 89 | |
| 90 | ALTER TABLE public.auth_group_permissions_id_seq OWNER TO postgres; |
| 91 | |
| 92 | -- |
| 93 | -- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 94 | -- |
| 95 | |
| 96 | ALTER SEQUENCE auth_group_permissions_id_seq OWNED BY auth_group_permissions.id; |
| 97 | |
| 98 | |
| 99 | -- |
| 100 | -- Name: auth_permission; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 101 | -- |
| 102 | |
| 103 | CREATE TABLE auth_permission ( |
| 104 | id integer NOT NULL, |
| 105 | name character varying(50) NOT NULL, |
| 106 | content_type_id integer NOT NULL, |
| 107 | codename character varying(100) NOT NULL |
| 108 | ); |
| 109 | |
| 110 | |
| 111 | ALTER TABLE public.auth_permission OWNER TO postgres; |
| 112 | |
| 113 | -- |
| 114 | -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 115 | -- |
| 116 | |
| 117 | CREATE SEQUENCE auth_permission_id_seq |
| 118 | START WITH 1 |
| 119 | INCREMENT BY 1 |
| 120 | NO MINVALUE |
| 121 | NO MAXVALUE |
| 122 | CACHE 1; |
| 123 | |
| 124 | |
| 125 | ALTER TABLE public.auth_permission_id_seq OWNER TO postgres; |
| 126 | |
| 127 | -- |
| 128 | -- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 129 | -- |
| 130 | |
| 131 | ALTER SEQUENCE auth_permission_id_seq OWNED BY auth_permission.id; |
| 132 | |
| 133 | |
| 134 | -- |
| 135 | -- Name: core_account; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 136 | -- |
| 137 | |
| 138 | CREATE TABLE core_account ( |
| 139 | id integer NOT NULL, |
| 140 | created timestamp with time zone NOT NULL, |
| 141 | updated timestamp with time zone NOT NULL, |
| 142 | enacted timestamp with time zone, |
| 143 | policed timestamp with time zone, |
| 144 | backend_register character varying(140), |
| 145 | backend_status character varying(1024) NOT NULL, |
| 146 | deleted boolean NOT NULL, |
| 147 | write_protect boolean NOT NULL, |
| 148 | lazy_blocked boolean NOT NULL, |
| 149 | no_sync boolean NOT NULL, |
| 150 | site_id integer NOT NULL |
| 151 | ); |
| 152 | |
| 153 | |
| 154 | ALTER TABLE public.core_account OWNER TO postgres; |
| 155 | |
| 156 | -- |
| 157 | -- Name: core_account_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 158 | -- |
| 159 | |
| 160 | CREATE SEQUENCE core_account_id_seq |
| 161 | START WITH 1 |
| 162 | INCREMENT BY 1 |
| 163 | NO MINVALUE |
| 164 | NO MAXVALUE |
| 165 | CACHE 1; |
| 166 | |
| 167 | |
| 168 | ALTER TABLE public.core_account_id_seq OWNER TO postgres; |
| 169 | |
| 170 | -- |
| 171 | -- Name: core_account_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 172 | -- |
| 173 | |
| 174 | ALTER SEQUENCE core_account_id_seq OWNED BY core_account.id; |
| 175 | |
| 176 | |
| 177 | -- |
| 178 | -- Name: core_addresspool; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 179 | -- |
| 180 | |
| 181 | CREATE TABLE core_addresspool ( |
| 182 | id integer NOT NULL, |
| 183 | created timestamp with time zone NOT NULL, |
| 184 | updated timestamp with time zone NOT NULL, |
| 185 | enacted timestamp with time zone, |
| 186 | policed timestamp with time zone, |
| 187 | backend_register character varying(140), |
| 188 | backend_status character varying(1024) NOT NULL, |
| 189 | deleted boolean NOT NULL, |
| 190 | write_protect boolean NOT NULL, |
| 191 | lazy_blocked boolean NOT NULL, |
| 192 | no_sync boolean NOT NULL, |
| 193 | name character varying(32) NOT NULL, |
| 194 | addresses text, |
| 195 | inuse text |
| 196 | ); |
| 197 | |
| 198 | |
| 199 | ALTER TABLE public.core_addresspool OWNER TO postgres; |
| 200 | |
| 201 | -- |
| 202 | -- Name: core_addresspool_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 203 | -- |
| 204 | |
| 205 | CREATE SEQUENCE core_addresspool_id_seq |
| 206 | START WITH 1 |
| 207 | INCREMENT BY 1 |
| 208 | NO MINVALUE |
| 209 | NO MAXVALUE |
| 210 | CACHE 1; |
| 211 | |
| 212 | |
| 213 | ALTER TABLE public.core_addresspool_id_seq OWNER TO postgres; |
| 214 | |
| 215 | -- |
| 216 | -- Name: core_addresspool_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 217 | -- |
| 218 | |
| 219 | ALTER SEQUENCE core_addresspool_id_seq OWNED BY core_addresspool.id; |
| 220 | |
| 221 | |
| 222 | -- |
| 223 | -- Name: core_charge; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 224 | -- |
| 225 | |
| 226 | CREATE TABLE core_charge ( |
| 227 | id integer NOT NULL, |
| 228 | created timestamp with time zone NOT NULL, |
| 229 | updated timestamp with time zone NOT NULL, |
| 230 | enacted timestamp with time zone, |
| 231 | policed timestamp with time zone, |
| 232 | backend_register character varying(140), |
| 233 | backend_status character varying(1024) NOT NULL, |
| 234 | deleted boolean NOT NULL, |
| 235 | write_protect boolean NOT NULL, |
| 236 | lazy_blocked boolean NOT NULL, |
| 237 | no_sync boolean NOT NULL, |
| 238 | kind character varying(30) NOT NULL, |
| 239 | state character varying(30) NOT NULL, |
| 240 | date timestamp with time zone NOT NULL, |
| 241 | amount double precision NOT NULL, |
| 242 | "coreHours" double precision NOT NULL, |
| 243 | account_id integer NOT NULL, |
| 244 | invoice_id integer, |
| 245 | object_id integer NOT NULL, |
| 246 | slice_id integer |
| 247 | ); |
| 248 | |
| 249 | |
| 250 | ALTER TABLE public.core_charge OWNER TO postgres; |
| 251 | |
| 252 | -- |
| 253 | -- Name: core_charge_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 254 | -- |
| 255 | |
| 256 | CREATE SEQUENCE core_charge_id_seq |
| 257 | START WITH 1 |
| 258 | INCREMENT BY 1 |
| 259 | NO MINVALUE |
| 260 | NO MAXVALUE |
| 261 | CACHE 1; |
| 262 | |
| 263 | |
| 264 | ALTER TABLE public.core_charge_id_seq OWNER TO postgres; |
| 265 | |
| 266 | -- |
| 267 | -- Name: core_charge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 268 | -- |
| 269 | |
| 270 | ALTER SEQUENCE core_charge_id_seq OWNED BY core_charge.id; |
| 271 | |
| 272 | |
| 273 | -- |
| 274 | -- Name: core_controller; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 275 | -- |
| 276 | |
| 277 | CREATE TABLE core_controller ( |
| 278 | id integer NOT NULL, |
| 279 | created timestamp with time zone NOT NULL, |
| 280 | updated timestamp with time zone NOT NULL, |
| 281 | enacted timestamp with time zone, |
| 282 | policed timestamp with time zone, |
| 283 | backend_register character varying(140), |
| 284 | backend_status character varying(1024) NOT NULL, |
| 285 | deleted boolean NOT NULL, |
| 286 | write_protect boolean NOT NULL, |
| 287 | lazy_blocked boolean NOT NULL, |
| 288 | no_sync boolean NOT NULL, |
| 289 | name character varying(200) NOT NULL, |
| 290 | backend_type character varying(200) NOT NULL, |
| 291 | version character varying(200) NOT NULL, |
| 292 | auth_url character varying(200), |
| 293 | admin_user character varying(200), |
| 294 | admin_password character varying(200), |
| 295 | admin_tenant character varying(200), |
| 296 | domain character varying(200), |
| 297 | rabbit_host character varying(200), |
| 298 | rabbit_user character varying(200), |
| 299 | rabbit_password character varying(200), |
| 300 | deployment_id integer NOT NULL |
| 301 | ); |
| 302 | |
| 303 | |
| 304 | ALTER TABLE public.core_controller OWNER TO postgres; |
| 305 | |
| 306 | -- |
| 307 | -- Name: core_controller_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 308 | -- |
| 309 | |
| 310 | CREATE SEQUENCE core_controller_id_seq |
| 311 | START WITH 1 |
| 312 | INCREMENT BY 1 |
| 313 | NO MINVALUE |
| 314 | NO MAXVALUE |
| 315 | CACHE 1; |
| 316 | |
| 317 | |
| 318 | ALTER TABLE public.core_controller_id_seq OWNER TO postgres; |
| 319 | |
| 320 | -- |
| 321 | -- Name: core_controller_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 322 | -- |
| 323 | |
| 324 | ALTER SEQUENCE core_controller_id_seq OWNED BY core_controller.id; |
| 325 | |
| 326 | |
| 327 | -- |
| 328 | -- Name: core_controllercredential; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 329 | -- |
| 330 | |
| 331 | CREATE TABLE core_controllercredential ( |
| 332 | id integer NOT NULL, |
| 333 | created timestamp with time zone NOT NULL, |
| 334 | updated timestamp with time zone NOT NULL, |
| 335 | enacted timestamp with time zone, |
| 336 | policed timestamp with time zone, |
| 337 | backend_register character varying(140), |
| 338 | backend_status character varying(1024) NOT NULL, |
| 339 | deleted boolean NOT NULL, |
| 340 | write_protect boolean NOT NULL, |
| 341 | lazy_blocked boolean NOT NULL, |
| 342 | no_sync boolean NOT NULL, |
| 343 | name character varying(128) NOT NULL, |
| 344 | key_id character varying(1024) NOT NULL, |
| 345 | enc_value text NOT NULL, |
| 346 | controller_id integer NOT NULL |
| 347 | ); |
| 348 | |
| 349 | |
| 350 | ALTER TABLE public.core_controllercredential OWNER TO postgres; |
| 351 | |
| 352 | -- |
| 353 | -- Name: core_controllercredential_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 354 | -- |
| 355 | |
| 356 | CREATE SEQUENCE core_controllercredential_id_seq |
| 357 | START WITH 1 |
| 358 | INCREMENT BY 1 |
| 359 | NO MINVALUE |
| 360 | NO MAXVALUE |
| 361 | CACHE 1; |
| 362 | |
| 363 | |
| 364 | ALTER TABLE public.core_controllercredential_id_seq OWNER TO postgres; |
| 365 | |
| 366 | -- |
| 367 | -- Name: core_controllercredential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 368 | -- |
| 369 | |
| 370 | ALTER SEQUENCE core_controllercredential_id_seq OWNED BY core_controllercredential.id; |
| 371 | |
| 372 | |
| 373 | -- |
| 374 | -- Name: core_controllerdashboardview; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 375 | -- |
| 376 | |
| 377 | CREATE TABLE core_controllerdashboardview ( |
| 378 | id integer NOT NULL, |
| 379 | created timestamp with time zone NOT NULL, |
| 380 | updated timestamp with time zone NOT NULL, |
| 381 | enacted timestamp with time zone, |
| 382 | policed timestamp with time zone, |
| 383 | backend_register character varying(140), |
| 384 | backend_status character varying(1024) NOT NULL, |
| 385 | deleted boolean NOT NULL, |
| 386 | write_protect boolean NOT NULL, |
| 387 | lazy_blocked boolean NOT NULL, |
| 388 | no_sync boolean NOT NULL, |
| 389 | enabled boolean NOT NULL, |
| 390 | url character varying(1024) NOT NULL, |
| 391 | controller_id integer NOT NULL, |
| 392 | "dashboardView_id" integer NOT NULL |
| 393 | ); |
| 394 | |
| 395 | |
| 396 | ALTER TABLE public.core_controllerdashboardview OWNER TO postgres; |
| 397 | |
| 398 | -- |
| 399 | -- Name: core_controllerdashboardview_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 400 | -- |
| 401 | |
| 402 | CREATE SEQUENCE core_controllerdashboardview_id_seq |
| 403 | START WITH 1 |
| 404 | INCREMENT BY 1 |
| 405 | NO MINVALUE |
| 406 | NO MAXVALUE |
| 407 | CACHE 1; |
| 408 | |
| 409 | |
| 410 | ALTER TABLE public.core_controllerdashboardview_id_seq OWNER TO postgres; |
| 411 | |
| 412 | -- |
| 413 | -- Name: core_controllerdashboardview_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 414 | -- |
| 415 | |
| 416 | ALTER SEQUENCE core_controllerdashboardview_id_seq OWNED BY core_controllerdashboardview.id; |
| 417 | |
| 418 | |
| 419 | -- |
| 420 | -- Name: core_controllerimages; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 421 | -- |
| 422 | |
| 423 | CREATE TABLE core_controllerimages ( |
| 424 | id integer NOT NULL, |
| 425 | created timestamp with time zone NOT NULL, |
| 426 | updated timestamp with time zone NOT NULL, |
| 427 | enacted timestamp with time zone, |
| 428 | policed timestamp with time zone, |
| 429 | backend_register character varying(140), |
| 430 | backend_status character varying(1024) NOT NULL, |
| 431 | deleted boolean NOT NULL, |
| 432 | write_protect boolean NOT NULL, |
| 433 | lazy_blocked boolean NOT NULL, |
| 434 | no_sync boolean NOT NULL, |
| 435 | glance_image_id character varying(200), |
| 436 | controller_id integer NOT NULL, |
| 437 | image_id integer NOT NULL |
| 438 | ); |
| 439 | |
| 440 | |
| 441 | ALTER TABLE public.core_controllerimages OWNER TO postgres; |
| 442 | |
| 443 | -- |
| 444 | -- Name: core_controllerimages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 445 | -- |
| 446 | |
| 447 | CREATE SEQUENCE core_controllerimages_id_seq |
| 448 | START WITH 1 |
| 449 | INCREMENT BY 1 |
| 450 | NO MINVALUE |
| 451 | NO MAXVALUE |
| 452 | CACHE 1; |
| 453 | |
| 454 | |
| 455 | ALTER TABLE public.core_controllerimages_id_seq OWNER TO postgres; |
| 456 | |
| 457 | -- |
| 458 | -- Name: core_controllerimages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 459 | -- |
| 460 | |
| 461 | ALTER SEQUENCE core_controllerimages_id_seq OWNED BY core_controllerimages.id; |
| 462 | |
| 463 | |
| 464 | -- |
| 465 | -- Name: core_controllernetwork; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 466 | -- |
| 467 | |
| 468 | CREATE TABLE core_controllernetwork ( |
| 469 | id integer NOT NULL, |
| 470 | created timestamp with time zone NOT NULL, |
| 471 | updated timestamp with time zone NOT NULL, |
| 472 | enacted timestamp with time zone, |
| 473 | policed timestamp with time zone, |
| 474 | backend_register character varying(140), |
| 475 | backend_status character varying(1024) NOT NULL, |
| 476 | deleted boolean NOT NULL, |
| 477 | write_protect boolean NOT NULL, |
| 478 | lazy_blocked boolean NOT NULL, |
| 479 | no_sync boolean NOT NULL, |
| 480 | net_id character varying(256), |
| 481 | router_id character varying(256), |
| 482 | subnet_id character varying(256), |
| 483 | subnet character varying(32) NOT NULL, |
| 484 | controller_id integer NOT NULL, |
| 485 | network_id integer NOT NULL |
| 486 | ); |
| 487 | |
| 488 | |
| 489 | ALTER TABLE public.core_controllernetwork OWNER TO postgres; |
| 490 | |
| 491 | -- |
| 492 | -- Name: core_controllernetwork_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 493 | -- |
| 494 | |
| 495 | CREATE SEQUENCE core_controllernetwork_id_seq |
| 496 | START WITH 1 |
| 497 | INCREMENT BY 1 |
| 498 | NO MINVALUE |
| 499 | NO MAXVALUE |
| 500 | CACHE 1; |
| 501 | |
| 502 | |
| 503 | ALTER TABLE public.core_controllernetwork_id_seq OWNER TO postgres; |
| 504 | |
| 505 | -- |
| 506 | -- Name: core_controllernetwork_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 507 | -- |
| 508 | |
| 509 | ALTER SEQUENCE core_controllernetwork_id_seq OWNED BY core_controllernetwork.id; |
| 510 | |
| 511 | |
| 512 | -- |
| 513 | -- Name: core_controllerrole; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 514 | -- |
| 515 | |
| 516 | CREATE TABLE core_controllerrole ( |
| 517 | id integer NOT NULL, |
| 518 | created timestamp with time zone NOT NULL, |
| 519 | updated timestamp with time zone NOT NULL, |
| 520 | enacted timestamp with time zone, |
| 521 | policed timestamp with time zone, |
| 522 | backend_register character varying(140), |
| 523 | backend_status character varying(1024) NOT NULL, |
| 524 | deleted boolean NOT NULL, |
| 525 | write_protect boolean NOT NULL, |
| 526 | lazy_blocked boolean NOT NULL, |
| 527 | no_sync boolean NOT NULL, |
| 528 | role character varying(30) NOT NULL |
| 529 | ); |
| 530 | |
| 531 | |
| 532 | ALTER TABLE public.core_controllerrole OWNER TO postgres; |
| 533 | |
| 534 | -- |
| 535 | -- Name: core_controllerrole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 536 | -- |
| 537 | |
| 538 | CREATE SEQUENCE core_controllerrole_id_seq |
| 539 | START WITH 1 |
| 540 | INCREMENT BY 1 |
| 541 | NO MINVALUE |
| 542 | NO MAXVALUE |
| 543 | CACHE 1; |
| 544 | |
| 545 | |
| 546 | ALTER TABLE public.core_controllerrole_id_seq OWNER TO postgres; |
| 547 | |
| 548 | -- |
| 549 | -- Name: core_controllerrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 550 | -- |
| 551 | |
| 552 | ALTER SEQUENCE core_controllerrole_id_seq OWNED BY core_controllerrole.id; |
| 553 | |
| 554 | |
| 555 | -- |
| 556 | -- Name: core_controllersite; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 557 | -- |
| 558 | |
| 559 | CREATE TABLE core_controllersite ( |
| 560 | id integer NOT NULL, |
| 561 | created timestamp with time zone NOT NULL, |
| 562 | updated timestamp with time zone NOT NULL, |
| 563 | enacted timestamp with time zone, |
| 564 | policed timestamp with time zone, |
| 565 | backend_register character varying(140), |
| 566 | backend_status character varying(1024) NOT NULL, |
| 567 | deleted boolean NOT NULL, |
| 568 | write_protect boolean NOT NULL, |
| 569 | lazy_blocked boolean NOT NULL, |
| 570 | no_sync boolean NOT NULL, |
| 571 | tenant_id character varying(200), |
| 572 | controller_id integer, |
| 573 | site_id integer NOT NULL |
| 574 | ); |
| 575 | |
| 576 | |
| 577 | ALTER TABLE public.core_controllersite OWNER TO postgres; |
| 578 | |
| 579 | -- |
| 580 | -- Name: core_controllersite_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 581 | -- |
| 582 | |
| 583 | CREATE SEQUENCE core_controllersite_id_seq |
| 584 | START WITH 1 |
| 585 | INCREMENT BY 1 |
| 586 | NO MINVALUE |
| 587 | NO MAXVALUE |
| 588 | CACHE 1; |
| 589 | |
| 590 | |
| 591 | ALTER TABLE public.core_controllersite_id_seq OWNER TO postgres; |
| 592 | |
| 593 | -- |
| 594 | -- Name: core_controllersite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 595 | -- |
| 596 | |
| 597 | ALTER SEQUENCE core_controllersite_id_seq OWNED BY core_controllersite.id; |
| 598 | |
| 599 | |
| 600 | -- |
| 601 | -- Name: core_controllersiteprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 602 | -- |
| 603 | |
| 604 | CREATE TABLE core_controllersiteprivilege ( |
| 605 | id integer NOT NULL, |
| 606 | created timestamp with time zone NOT NULL, |
| 607 | updated timestamp with time zone NOT NULL, |
| 608 | enacted timestamp with time zone, |
| 609 | policed timestamp with time zone, |
| 610 | backend_register character varying(140), |
| 611 | backend_status character varying(1024) NOT NULL, |
| 612 | deleted boolean NOT NULL, |
| 613 | write_protect boolean NOT NULL, |
| 614 | lazy_blocked boolean NOT NULL, |
| 615 | no_sync boolean NOT NULL, |
| 616 | role_id character varying(200), |
| 617 | controller_id integer NOT NULL, |
| 618 | site_privilege_id integer NOT NULL |
| 619 | ); |
| 620 | |
| 621 | |
| 622 | ALTER TABLE public.core_controllersiteprivilege OWNER TO postgres; |
| 623 | |
| 624 | -- |
| 625 | -- Name: core_controllersiteprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 626 | -- |
| 627 | |
| 628 | CREATE SEQUENCE core_controllersiteprivilege_id_seq |
| 629 | START WITH 1 |
| 630 | INCREMENT BY 1 |
| 631 | NO MINVALUE |
| 632 | NO MAXVALUE |
| 633 | CACHE 1; |
| 634 | |
| 635 | |
| 636 | ALTER TABLE public.core_controllersiteprivilege_id_seq OWNER TO postgres; |
| 637 | |
| 638 | -- |
| 639 | -- Name: core_controllersiteprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 640 | -- |
| 641 | |
| 642 | ALTER SEQUENCE core_controllersiteprivilege_id_seq OWNED BY core_controllersiteprivilege.id; |
| 643 | |
| 644 | |
| 645 | -- |
| 646 | -- Name: core_controllerslice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 647 | -- |
| 648 | |
| 649 | CREATE TABLE core_controllerslice ( |
| 650 | id integer NOT NULL, |
| 651 | created timestamp with time zone NOT NULL, |
| 652 | updated timestamp with time zone NOT NULL, |
| 653 | enacted timestamp with time zone, |
| 654 | policed timestamp with time zone, |
| 655 | backend_register character varying(140), |
| 656 | backend_status character varying(1024) NOT NULL, |
| 657 | deleted boolean NOT NULL, |
| 658 | write_protect boolean NOT NULL, |
| 659 | lazy_blocked boolean NOT NULL, |
| 660 | no_sync boolean NOT NULL, |
| 661 | tenant_id character varying(200), |
| 662 | controller_id integer NOT NULL, |
| 663 | slice_id integer NOT NULL |
| 664 | ); |
| 665 | |
| 666 | |
| 667 | ALTER TABLE public.core_controllerslice OWNER TO postgres; |
| 668 | |
| 669 | -- |
| 670 | -- Name: core_controllerslice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 671 | -- |
| 672 | |
| 673 | CREATE SEQUENCE core_controllerslice_id_seq |
| 674 | START WITH 1 |
| 675 | INCREMENT BY 1 |
| 676 | NO MINVALUE |
| 677 | NO MAXVALUE |
| 678 | CACHE 1; |
| 679 | |
| 680 | |
| 681 | ALTER TABLE public.core_controllerslice_id_seq OWNER TO postgres; |
| 682 | |
| 683 | -- |
| 684 | -- Name: core_controllerslice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 685 | -- |
| 686 | |
| 687 | ALTER SEQUENCE core_controllerslice_id_seq OWNED BY core_controllerslice.id; |
| 688 | |
| 689 | |
| 690 | -- |
| 691 | -- Name: core_controllersliceprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 692 | -- |
| 693 | |
| 694 | CREATE TABLE core_controllersliceprivilege ( |
| 695 | id integer NOT NULL, |
| 696 | created timestamp with time zone NOT NULL, |
| 697 | updated timestamp with time zone NOT NULL, |
| 698 | enacted timestamp with time zone, |
| 699 | policed timestamp with time zone, |
| 700 | backend_register character varying(140), |
| 701 | backend_status character varying(1024) NOT NULL, |
| 702 | deleted boolean NOT NULL, |
| 703 | write_protect boolean NOT NULL, |
| 704 | lazy_blocked boolean NOT NULL, |
| 705 | no_sync boolean NOT NULL, |
| 706 | role_id character varying(200), |
| 707 | controller_id integer NOT NULL, |
| 708 | slice_privilege_id integer NOT NULL |
| 709 | ); |
| 710 | |
| 711 | |
| 712 | ALTER TABLE public.core_controllersliceprivilege OWNER TO postgres; |
| 713 | |
| 714 | -- |
| 715 | -- Name: core_controllersliceprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 716 | -- |
| 717 | |
| 718 | CREATE SEQUENCE core_controllersliceprivilege_id_seq |
| 719 | START WITH 1 |
| 720 | INCREMENT BY 1 |
| 721 | NO MINVALUE |
| 722 | NO MAXVALUE |
| 723 | CACHE 1; |
| 724 | |
| 725 | |
| 726 | ALTER TABLE public.core_controllersliceprivilege_id_seq OWNER TO postgres; |
| 727 | |
| 728 | -- |
| 729 | -- Name: core_controllersliceprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 730 | -- |
| 731 | |
| 732 | ALTER SEQUENCE core_controllersliceprivilege_id_seq OWNED BY core_controllersliceprivilege.id; |
| 733 | |
| 734 | |
| 735 | -- |
| 736 | -- Name: core_controlleruser; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 737 | -- |
| 738 | |
| 739 | CREATE TABLE core_controlleruser ( |
| 740 | id integer NOT NULL, |
| 741 | created timestamp with time zone NOT NULL, |
| 742 | updated timestamp with time zone NOT NULL, |
| 743 | enacted timestamp with time zone, |
| 744 | policed timestamp with time zone, |
| 745 | backend_register character varying(140), |
| 746 | backend_status character varying(1024) NOT NULL, |
| 747 | deleted boolean NOT NULL, |
| 748 | write_protect boolean NOT NULL, |
| 749 | lazy_blocked boolean NOT NULL, |
| 750 | no_sync boolean NOT NULL, |
| 751 | kuser_id character varying(200), |
| 752 | controller_id integer NOT NULL, |
| 753 | user_id integer NOT NULL |
| 754 | ); |
| 755 | |
| 756 | |
| 757 | ALTER TABLE public.core_controlleruser OWNER TO postgres; |
| 758 | |
| 759 | -- |
| 760 | -- Name: core_controlleruser_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 761 | -- |
| 762 | |
| 763 | CREATE SEQUENCE core_controlleruser_id_seq |
| 764 | START WITH 1 |
| 765 | INCREMENT BY 1 |
| 766 | NO MINVALUE |
| 767 | NO MAXVALUE |
| 768 | CACHE 1; |
| 769 | |
| 770 | |
| 771 | ALTER TABLE public.core_controlleruser_id_seq OWNER TO postgres; |
| 772 | |
| 773 | -- |
| 774 | -- Name: core_controlleruser_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 775 | -- |
| 776 | |
| 777 | ALTER SEQUENCE core_controlleruser_id_seq OWNED BY core_controlleruser.id; |
| 778 | |
| 779 | |
| 780 | -- |
| 781 | -- Name: core_dashboardview; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 782 | -- |
| 783 | |
| 784 | CREATE TABLE core_dashboardview ( |
| 785 | id integer NOT NULL, |
| 786 | created timestamp with time zone NOT NULL, |
| 787 | updated timestamp with time zone NOT NULL, |
| 788 | enacted timestamp with time zone, |
| 789 | policed timestamp with time zone, |
| 790 | backend_register character varying(140), |
| 791 | backend_status character varying(1024) NOT NULL, |
| 792 | deleted boolean NOT NULL, |
| 793 | write_protect boolean NOT NULL, |
| 794 | lazy_blocked boolean NOT NULL, |
| 795 | no_sync boolean NOT NULL, |
| 796 | name character varying(200) NOT NULL, |
| 797 | url character varying(1024) NOT NULL, |
| 798 | enabled boolean NOT NULL |
| 799 | ); |
| 800 | |
| 801 | |
| 802 | ALTER TABLE public.core_dashboardview OWNER TO postgres; |
| 803 | |
| 804 | -- |
| 805 | -- Name: core_dashboardview_deployments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 806 | -- |
| 807 | |
| 808 | CREATE TABLE core_dashboardview_deployments ( |
| 809 | id integer NOT NULL, |
| 810 | dashboardview_id integer NOT NULL, |
| 811 | deployment_id integer NOT NULL |
| 812 | ); |
| 813 | |
| 814 | |
| 815 | ALTER TABLE public.core_dashboardview_deployments OWNER TO postgres; |
| 816 | |
| 817 | -- |
| 818 | -- Name: core_dashboardview_deployments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 819 | -- |
| 820 | |
| 821 | CREATE SEQUENCE core_dashboardview_deployments_id_seq |
| 822 | START WITH 1 |
| 823 | INCREMENT BY 1 |
| 824 | NO MINVALUE |
| 825 | NO MAXVALUE |
| 826 | CACHE 1; |
| 827 | |
| 828 | |
| 829 | ALTER TABLE public.core_dashboardview_deployments_id_seq OWNER TO postgres; |
| 830 | |
| 831 | -- |
| 832 | -- Name: core_dashboardview_deployments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 833 | -- |
| 834 | |
| 835 | ALTER SEQUENCE core_dashboardview_deployments_id_seq OWNED BY core_dashboardview_deployments.id; |
| 836 | |
| 837 | |
| 838 | -- |
| 839 | -- Name: core_dashboardview_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 840 | -- |
| 841 | |
| 842 | CREATE SEQUENCE core_dashboardview_id_seq |
| 843 | START WITH 1 |
| 844 | INCREMENT BY 1 |
| 845 | NO MINVALUE |
| 846 | NO MAXVALUE |
| 847 | CACHE 1; |
| 848 | |
| 849 | |
| 850 | ALTER TABLE public.core_dashboardview_id_seq OWNER TO postgres; |
| 851 | |
| 852 | -- |
| 853 | -- Name: core_dashboardview_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 854 | -- |
| 855 | |
| 856 | ALTER SEQUENCE core_dashboardview_id_seq OWNED BY core_dashboardview.id; |
| 857 | |
| 858 | |
| 859 | -- |
| 860 | -- Name: core_deployment; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 861 | -- |
| 862 | |
| 863 | CREATE TABLE core_deployment ( |
| 864 | id integer NOT NULL, |
| 865 | created timestamp with time zone NOT NULL, |
| 866 | updated timestamp with time zone NOT NULL, |
| 867 | enacted timestamp with time zone, |
| 868 | policed timestamp with time zone, |
| 869 | backend_register character varying(140), |
| 870 | backend_status character varying(1024) NOT NULL, |
| 871 | deleted boolean NOT NULL, |
| 872 | write_protect boolean NOT NULL, |
| 873 | lazy_blocked boolean NOT NULL, |
| 874 | no_sync boolean NOT NULL, |
| 875 | name character varying(200) NOT NULL, |
| 876 | "accessControl" text NOT NULL |
| 877 | ); |
| 878 | |
| 879 | |
| 880 | ALTER TABLE public.core_deployment OWNER TO postgres; |
| 881 | |
| 882 | -- |
| 883 | -- Name: core_deployment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 884 | -- |
| 885 | |
| 886 | CREATE SEQUENCE core_deployment_id_seq |
| 887 | START WITH 1 |
| 888 | INCREMENT BY 1 |
| 889 | NO MINVALUE |
| 890 | NO MAXVALUE |
| 891 | CACHE 1; |
| 892 | |
| 893 | |
| 894 | ALTER TABLE public.core_deployment_id_seq OWNER TO postgres; |
| 895 | |
| 896 | -- |
| 897 | -- Name: core_deployment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 898 | -- |
| 899 | |
| 900 | ALTER SEQUENCE core_deployment_id_seq OWNED BY core_deployment.id; |
| 901 | |
| 902 | |
| 903 | -- |
| 904 | -- Name: core_deploymentprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 905 | -- |
| 906 | |
| 907 | CREATE TABLE core_deploymentprivilege ( |
| 908 | id integer NOT NULL, |
| 909 | created timestamp with time zone NOT NULL, |
| 910 | updated timestamp with time zone NOT NULL, |
| 911 | enacted timestamp with time zone, |
| 912 | policed timestamp with time zone, |
| 913 | backend_register character varying(140), |
| 914 | backend_status character varying(1024) NOT NULL, |
| 915 | deleted boolean NOT NULL, |
| 916 | write_protect boolean NOT NULL, |
| 917 | lazy_blocked boolean NOT NULL, |
| 918 | no_sync boolean NOT NULL, |
| 919 | deployment_id integer NOT NULL, |
| 920 | role_id integer NOT NULL, |
| 921 | user_id integer NOT NULL |
| 922 | ); |
| 923 | |
| 924 | |
| 925 | ALTER TABLE public.core_deploymentprivilege OWNER TO postgres; |
| 926 | |
| 927 | -- |
| 928 | -- Name: core_deploymentprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 929 | -- |
| 930 | |
| 931 | CREATE SEQUENCE core_deploymentprivilege_id_seq |
| 932 | START WITH 1 |
| 933 | INCREMENT BY 1 |
| 934 | NO MINVALUE |
| 935 | NO MAXVALUE |
| 936 | CACHE 1; |
| 937 | |
| 938 | |
| 939 | ALTER TABLE public.core_deploymentprivilege_id_seq OWNER TO postgres; |
| 940 | |
| 941 | -- |
| 942 | -- Name: core_deploymentprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 943 | -- |
| 944 | |
| 945 | ALTER SEQUENCE core_deploymentprivilege_id_seq OWNED BY core_deploymentprivilege.id; |
| 946 | |
| 947 | |
| 948 | -- |
| 949 | -- Name: core_deploymentrole; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 950 | -- |
| 951 | |
| 952 | CREATE TABLE core_deploymentrole ( |
| 953 | id integer NOT NULL, |
| 954 | created timestamp with time zone NOT NULL, |
| 955 | updated timestamp with time zone NOT NULL, |
| 956 | enacted timestamp with time zone, |
| 957 | policed timestamp with time zone, |
| 958 | backend_register character varying(140), |
| 959 | backend_status character varying(1024) NOT NULL, |
| 960 | deleted boolean NOT NULL, |
| 961 | write_protect boolean NOT NULL, |
| 962 | lazy_blocked boolean NOT NULL, |
| 963 | no_sync boolean NOT NULL, |
| 964 | role character varying(30) NOT NULL |
| 965 | ); |
| 966 | |
| 967 | |
| 968 | ALTER TABLE public.core_deploymentrole OWNER TO postgres; |
| 969 | |
| 970 | -- |
| 971 | -- Name: core_deploymentrole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 972 | -- |
| 973 | |
| 974 | CREATE SEQUENCE core_deploymentrole_id_seq |
| 975 | START WITH 1 |
| 976 | INCREMENT BY 1 |
| 977 | NO MINVALUE |
| 978 | NO MAXVALUE |
| 979 | CACHE 1; |
| 980 | |
| 981 | |
| 982 | ALTER TABLE public.core_deploymentrole_id_seq OWNER TO postgres; |
| 983 | |
| 984 | -- |
| 985 | -- Name: core_deploymentrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 986 | -- |
| 987 | |
| 988 | ALTER SEQUENCE core_deploymentrole_id_seq OWNED BY core_deploymentrole.id; |
| 989 | |
| 990 | |
| 991 | -- |
| 992 | -- Name: core_diag; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 993 | -- |
| 994 | |
| 995 | CREATE TABLE core_diag ( |
| 996 | id integer NOT NULL, |
| 997 | created timestamp with time zone NOT NULL, |
| 998 | updated timestamp with time zone NOT NULL, |
| 999 | enacted timestamp with time zone, |
| 1000 | policed timestamp with time zone, |
| 1001 | backend_register character varying(140), |
| 1002 | backend_status character varying(1024) NOT NULL, |
| 1003 | deleted boolean NOT NULL, |
| 1004 | write_protect boolean NOT NULL, |
| 1005 | lazy_blocked boolean NOT NULL, |
| 1006 | no_sync boolean NOT NULL, |
| 1007 | name character varying(200) NOT NULL |
| 1008 | ); |
| 1009 | |
| 1010 | |
| 1011 | ALTER TABLE public.core_diag OWNER TO postgres; |
| 1012 | |
| 1013 | -- |
| 1014 | -- Name: core_diag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1015 | -- |
| 1016 | |
| 1017 | CREATE SEQUENCE core_diag_id_seq |
| 1018 | START WITH 1 |
| 1019 | INCREMENT BY 1 |
| 1020 | NO MINVALUE |
| 1021 | NO MAXVALUE |
| 1022 | CACHE 1; |
| 1023 | |
| 1024 | |
| 1025 | ALTER TABLE public.core_diag_id_seq OWNER TO postgres; |
| 1026 | |
| 1027 | -- |
| 1028 | -- Name: core_diag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1029 | -- |
| 1030 | |
| 1031 | ALTER SEQUENCE core_diag_id_seq OWNED BY core_diag.id; |
| 1032 | |
| 1033 | |
| 1034 | -- |
| 1035 | -- Name: core_flavor; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1036 | -- |
| 1037 | |
| 1038 | CREATE TABLE core_flavor ( |
| 1039 | id integer NOT NULL, |
| 1040 | created timestamp with time zone NOT NULL, |
| 1041 | updated timestamp with time zone NOT NULL, |
| 1042 | enacted timestamp with time zone, |
| 1043 | policed timestamp with time zone, |
| 1044 | backend_register character varying(140), |
| 1045 | backend_status character varying(1024) NOT NULL, |
| 1046 | deleted boolean NOT NULL, |
| 1047 | write_protect boolean NOT NULL, |
| 1048 | lazy_blocked boolean NOT NULL, |
| 1049 | no_sync boolean NOT NULL, |
| 1050 | name character varying(32) NOT NULL, |
| 1051 | description character varying(1024), |
| 1052 | flavor character varying(32) NOT NULL, |
| 1053 | "order" integer NOT NULL, |
| 1054 | "default" boolean NOT NULL |
| 1055 | ); |
| 1056 | |
| 1057 | |
| 1058 | ALTER TABLE public.core_flavor OWNER TO postgres; |
| 1059 | |
| 1060 | -- |
| 1061 | -- Name: core_flavor_deployments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1062 | -- |
| 1063 | |
| 1064 | CREATE TABLE core_flavor_deployments ( |
| 1065 | id integer NOT NULL, |
| 1066 | flavor_id integer NOT NULL, |
| 1067 | deployment_id integer NOT NULL |
| 1068 | ); |
| 1069 | |
| 1070 | |
| 1071 | ALTER TABLE public.core_flavor_deployments OWNER TO postgres; |
| 1072 | |
| 1073 | -- |
| 1074 | -- Name: core_flavor_deployments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1075 | -- |
| 1076 | |
| 1077 | CREATE SEQUENCE core_flavor_deployments_id_seq |
| 1078 | START WITH 1 |
| 1079 | INCREMENT BY 1 |
| 1080 | NO MINVALUE |
| 1081 | NO MAXVALUE |
| 1082 | CACHE 1; |
| 1083 | |
| 1084 | |
| 1085 | ALTER TABLE public.core_flavor_deployments_id_seq OWNER TO postgres; |
| 1086 | |
| 1087 | -- |
| 1088 | -- Name: core_flavor_deployments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1089 | -- |
| 1090 | |
| 1091 | ALTER SEQUENCE core_flavor_deployments_id_seq OWNED BY core_flavor_deployments.id; |
| 1092 | |
| 1093 | |
| 1094 | -- |
| 1095 | -- Name: core_flavor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1096 | -- |
| 1097 | |
| 1098 | CREATE SEQUENCE core_flavor_id_seq |
| 1099 | START WITH 1 |
| 1100 | INCREMENT BY 1 |
| 1101 | NO MINVALUE |
| 1102 | NO MAXVALUE |
| 1103 | CACHE 1; |
| 1104 | |
| 1105 | |
| 1106 | ALTER TABLE public.core_flavor_id_seq OWNER TO postgres; |
| 1107 | |
| 1108 | -- |
| 1109 | -- Name: core_flavor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1110 | -- |
| 1111 | |
| 1112 | ALTER SEQUENCE core_flavor_id_seq OWNED BY core_flavor.id; |
| 1113 | |
| 1114 | |
| 1115 | -- |
| 1116 | -- Name: core_image; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1117 | -- |
| 1118 | |
| 1119 | CREATE TABLE core_image ( |
| 1120 | id integer NOT NULL, |
| 1121 | created timestamp with time zone NOT NULL, |
| 1122 | updated timestamp with time zone NOT NULL, |
| 1123 | enacted timestamp with time zone, |
| 1124 | policed timestamp with time zone, |
| 1125 | backend_register character varying(140), |
| 1126 | backend_status character varying(1024) NOT NULL, |
| 1127 | deleted boolean NOT NULL, |
| 1128 | write_protect boolean NOT NULL, |
| 1129 | lazy_blocked boolean NOT NULL, |
| 1130 | no_sync boolean NOT NULL, |
| 1131 | name character varying(256) NOT NULL, |
| 1132 | kind character varying(30) NOT NULL, |
| 1133 | disk_format character varying(256) NOT NULL, |
| 1134 | container_format character varying(256) NOT NULL, |
| 1135 | path character varying(256), |
| 1136 | tag character varying(256) |
| 1137 | ); |
| 1138 | |
| 1139 | |
| 1140 | ALTER TABLE public.core_image OWNER TO postgres; |
| 1141 | |
| 1142 | -- |
| 1143 | -- Name: core_image_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1144 | -- |
| 1145 | |
| 1146 | CREATE SEQUENCE core_image_id_seq |
| 1147 | START WITH 1 |
| 1148 | INCREMENT BY 1 |
| 1149 | NO MINVALUE |
| 1150 | NO MAXVALUE |
| 1151 | CACHE 1; |
| 1152 | |
| 1153 | |
| 1154 | ALTER TABLE public.core_image_id_seq OWNER TO postgres; |
| 1155 | |
| 1156 | -- |
| 1157 | -- Name: core_image_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1158 | -- |
| 1159 | |
| 1160 | ALTER SEQUENCE core_image_id_seq OWNED BY core_image.id; |
| 1161 | |
| 1162 | |
| 1163 | -- |
| 1164 | -- Name: core_imagedeployments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1165 | -- |
| 1166 | |
| 1167 | CREATE TABLE core_imagedeployments ( |
| 1168 | id integer NOT NULL, |
| 1169 | created timestamp with time zone NOT NULL, |
| 1170 | updated timestamp with time zone NOT NULL, |
| 1171 | enacted timestamp with time zone, |
| 1172 | policed timestamp with time zone, |
| 1173 | backend_register character varying(140), |
| 1174 | backend_status character varying(1024) NOT NULL, |
| 1175 | deleted boolean NOT NULL, |
| 1176 | write_protect boolean NOT NULL, |
| 1177 | lazy_blocked boolean NOT NULL, |
| 1178 | no_sync boolean NOT NULL, |
| 1179 | deployment_id integer NOT NULL, |
| 1180 | image_id integer NOT NULL |
| 1181 | ); |
| 1182 | |
| 1183 | |
| 1184 | ALTER TABLE public.core_imagedeployments OWNER TO postgres; |
| 1185 | |
| 1186 | -- |
| 1187 | -- Name: core_imagedeployments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1188 | -- |
| 1189 | |
| 1190 | CREATE SEQUENCE core_imagedeployments_id_seq |
| 1191 | START WITH 1 |
| 1192 | INCREMENT BY 1 |
| 1193 | NO MINVALUE |
| 1194 | NO MAXVALUE |
| 1195 | CACHE 1; |
| 1196 | |
| 1197 | |
| 1198 | ALTER TABLE public.core_imagedeployments_id_seq OWNER TO postgres; |
| 1199 | |
| 1200 | -- |
| 1201 | -- Name: core_imagedeployments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1202 | -- |
| 1203 | |
| 1204 | ALTER SEQUENCE core_imagedeployments_id_seq OWNED BY core_imagedeployments.id; |
| 1205 | |
| 1206 | |
| 1207 | -- |
| 1208 | -- Name: core_instance; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1209 | -- |
| 1210 | |
| 1211 | CREATE TABLE core_instance ( |
| 1212 | id integer NOT NULL, |
| 1213 | created timestamp with time zone NOT NULL, |
| 1214 | updated timestamp with time zone NOT NULL, |
| 1215 | enacted timestamp with time zone, |
| 1216 | policed timestamp with time zone, |
| 1217 | backend_register character varying(140), |
| 1218 | backend_status character varying(1024) NOT NULL, |
| 1219 | deleted boolean NOT NULL, |
| 1220 | write_protect boolean NOT NULL, |
| 1221 | lazy_blocked boolean NOT NULL, |
| 1222 | no_sync boolean NOT NULL, |
| 1223 | instance_id character varying(200), |
| 1224 | instance_uuid character varying(200), |
| 1225 | name character varying(200) NOT NULL, |
| 1226 | instance_name character varying(200), |
| 1227 | ip inet, |
| 1228 | "numberCores" integer NOT NULL, |
| 1229 | "userData" text, |
| 1230 | isolation character varying(30) NOT NULL, |
| 1231 | volumes text, |
| 1232 | creator_id integer, |
| 1233 | deployment_id integer NOT NULL, |
| 1234 | flavor_id integer NOT NULL, |
| 1235 | image_id integer NOT NULL, |
| 1236 | node_id integer NOT NULL, |
| 1237 | parent_id integer, |
| 1238 | slice_id integer NOT NULL |
| 1239 | ); |
| 1240 | |
| 1241 | |
| 1242 | ALTER TABLE public.core_instance OWNER TO postgres; |
| 1243 | |
| 1244 | -- |
| 1245 | -- Name: core_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1246 | -- |
| 1247 | |
| 1248 | CREATE SEQUENCE core_instance_id_seq |
| 1249 | START WITH 1 |
| 1250 | INCREMENT BY 1 |
| 1251 | NO MINVALUE |
| 1252 | NO MAXVALUE |
| 1253 | CACHE 1; |
| 1254 | |
| 1255 | |
| 1256 | ALTER TABLE public.core_instance_id_seq OWNER TO postgres; |
| 1257 | |
| 1258 | -- |
| 1259 | -- Name: core_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1260 | -- |
| 1261 | |
| 1262 | ALTER SEQUENCE core_instance_id_seq OWNED BY core_instance.id; |
| 1263 | |
| 1264 | |
| 1265 | -- |
| 1266 | -- Name: core_invoice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1267 | -- |
| 1268 | |
| 1269 | CREATE TABLE core_invoice ( |
| 1270 | id integer NOT NULL, |
| 1271 | created timestamp with time zone NOT NULL, |
| 1272 | updated timestamp with time zone NOT NULL, |
| 1273 | enacted timestamp with time zone, |
| 1274 | policed timestamp with time zone, |
| 1275 | backend_register character varying(140), |
| 1276 | backend_status character varying(1024) NOT NULL, |
| 1277 | deleted boolean NOT NULL, |
| 1278 | write_protect boolean NOT NULL, |
| 1279 | lazy_blocked boolean NOT NULL, |
| 1280 | no_sync boolean NOT NULL, |
| 1281 | date timestamp with time zone NOT NULL, |
| 1282 | account_id integer NOT NULL |
| 1283 | ); |
| 1284 | |
| 1285 | |
| 1286 | ALTER TABLE public.core_invoice OWNER TO postgres; |
| 1287 | |
| 1288 | -- |
| 1289 | -- Name: core_invoice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1290 | -- |
| 1291 | |
| 1292 | CREATE SEQUENCE core_invoice_id_seq |
| 1293 | START WITH 1 |
| 1294 | INCREMENT BY 1 |
| 1295 | NO MINVALUE |
| 1296 | NO MAXVALUE |
| 1297 | CACHE 1; |
| 1298 | |
| 1299 | |
| 1300 | ALTER TABLE public.core_invoice_id_seq OWNER TO postgres; |
| 1301 | |
| 1302 | -- |
| 1303 | -- Name: core_invoice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1304 | -- |
| 1305 | |
| 1306 | ALTER SEQUENCE core_invoice_id_seq OWNED BY core_invoice.id; |
| 1307 | |
| 1308 | |
| 1309 | -- |
| 1310 | -- Name: core_network; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1311 | -- |
| 1312 | |
| 1313 | CREATE TABLE core_network ( |
| 1314 | id integer NOT NULL, |
| 1315 | created timestamp with time zone NOT NULL, |
| 1316 | updated timestamp with time zone NOT NULL, |
| 1317 | enacted timestamp with time zone, |
| 1318 | policed timestamp with time zone, |
| 1319 | backend_register character varying(140), |
| 1320 | backend_status character varying(1024) NOT NULL, |
| 1321 | deleted boolean NOT NULL, |
| 1322 | write_protect boolean NOT NULL, |
| 1323 | lazy_blocked boolean NOT NULL, |
| 1324 | no_sync boolean NOT NULL, |
| 1325 | name character varying(32) NOT NULL, |
| 1326 | subnet character varying(32) NOT NULL, |
| 1327 | ports character varying(1024), |
| 1328 | labels character varying(1024), |
| 1329 | guaranteed_bandwidth integer NOT NULL, |
| 1330 | permit_all_slices boolean NOT NULL, |
| 1331 | topology_parameters text, |
| 1332 | controller_url character varying(1024), |
| 1333 | controller_parameters text, |
| 1334 | network_id character varying(256), |
| 1335 | router_id character varying(256), |
| 1336 | subnet_id character varying(256), |
| 1337 | autoconnect boolean NOT NULL, |
| 1338 | owner_id integer NOT NULL, |
| 1339 | template_id integer NOT NULL |
| 1340 | ); |
| 1341 | |
| 1342 | |
| 1343 | ALTER TABLE public.core_network OWNER TO postgres; |
| 1344 | |
| 1345 | -- |
| 1346 | -- Name: core_network_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1347 | -- |
| 1348 | |
| 1349 | CREATE SEQUENCE core_network_id_seq |
| 1350 | START WITH 1 |
| 1351 | INCREMENT BY 1 |
| 1352 | NO MINVALUE |
| 1353 | NO MAXVALUE |
| 1354 | CACHE 1; |
| 1355 | |
| 1356 | |
| 1357 | ALTER TABLE public.core_network_id_seq OWNER TO postgres; |
| 1358 | |
| 1359 | -- |
| 1360 | -- Name: core_network_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1361 | -- |
| 1362 | |
| 1363 | ALTER SEQUENCE core_network_id_seq OWNED BY core_network.id; |
| 1364 | |
| 1365 | |
| 1366 | -- |
| 1367 | -- Name: core_network_permitted_slices; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1368 | -- |
| 1369 | |
| 1370 | CREATE TABLE core_network_permitted_slices ( |
| 1371 | id integer NOT NULL, |
| 1372 | network_id integer NOT NULL, |
| 1373 | slice_id integer NOT NULL |
| 1374 | ); |
| 1375 | |
| 1376 | |
| 1377 | ALTER TABLE public.core_network_permitted_slices OWNER TO postgres; |
| 1378 | |
| 1379 | -- |
| 1380 | -- Name: core_network_permitted_slices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1381 | -- |
| 1382 | |
| 1383 | CREATE SEQUENCE core_network_permitted_slices_id_seq |
| 1384 | START WITH 1 |
| 1385 | INCREMENT BY 1 |
| 1386 | NO MINVALUE |
| 1387 | NO MAXVALUE |
| 1388 | CACHE 1; |
| 1389 | |
| 1390 | |
| 1391 | ALTER TABLE public.core_network_permitted_slices_id_seq OWNER TO postgres; |
| 1392 | |
| 1393 | -- |
| 1394 | -- Name: core_network_permitted_slices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1395 | -- |
| 1396 | |
| 1397 | ALTER SEQUENCE core_network_permitted_slices_id_seq OWNED BY core_network_permitted_slices.id; |
| 1398 | |
| 1399 | |
| 1400 | -- |
| 1401 | -- Name: core_networkparameter; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1402 | -- |
| 1403 | |
| 1404 | CREATE TABLE core_networkparameter ( |
| 1405 | id integer NOT NULL, |
| 1406 | created timestamp with time zone NOT NULL, |
| 1407 | updated timestamp with time zone NOT NULL, |
| 1408 | enacted timestamp with time zone, |
| 1409 | policed timestamp with time zone, |
| 1410 | backend_register character varying(140), |
| 1411 | backend_status character varying(1024) NOT NULL, |
| 1412 | deleted boolean NOT NULL, |
| 1413 | write_protect boolean NOT NULL, |
| 1414 | lazy_blocked boolean NOT NULL, |
| 1415 | no_sync boolean NOT NULL, |
| 1416 | value character varying(1024) NOT NULL, |
| 1417 | object_id integer NOT NULL, |
| 1418 | content_type_id integer NOT NULL, |
| 1419 | parameter_id integer NOT NULL, |
| 1420 | CONSTRAINT core_networkparameter_object_id_check CHECK ((object_id >= 0)) |
| 1421 | ); |
| 1422 | |
| 1423 | |
| 1424 | ALTER TABLE public.core_networkparameter OWNER TO postgres; |
| 1425 | |
| 1426 | -- |
| 1427 | -- Name: core_networkparameter_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1428 | -- |
| 1429 | |
| 1430 | CREATE SEQUENCE core_networkparameter_id_seq |
| 1431 | START WITH 1 |
| 1432 | INCREMENT BY 1 |
| 1433 | NO MINVALUE |
| 1434 | NO MAXVALUE |
| 1435 | CACHE 1; |
| 1436 | |
| 1437 | |
| 1438 | ALTER TABLE public.core_networkparameter_id_seq OWNER TO postgres; |
| 1439 | |
| 1440 | -- |
| 1441 | -- Name: core_networkparameter_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1442 | -- |
| 1443 | |
| 1444 | ALTER SEQUENCE core_networkparameter_id_seq OWNED BY core_networkparameter.id; |
| 1445 | |
| 1446 | |
| 1447 | -- |
| 1448 | -- Name: core_networkparametertype; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1449 | -- |
| 1450 | |
| 1451 | CREATE TABLE core_networkparametertype ( |
| 1452 | id integer NOT NULL, |
| 1453 | created timestamp with time zone NOT NULL, |
| 1454 | updated timestamp with time zone NOT NULL, |
| 1455 | enacted timestamp with time zone, |
| 1456 | policed timestamp with time zone, |
| 1457 | backend_register character varying(140), |
| 1458 | backend_status character varying(1024) NOT NULL, |
| 1459 | deleted boolean NOT NULL, |
| 1460 | write_protect boolean NOT NULL, |
| 1461 | lazy_blocked boolean NOT NULL, |
| 1462 | no_sync boolean NOT NULL, |
| 1463 | name character varying(128) NOT NULL, |
| 1464 | description character varying(1024) NOT NULL |
| 1465 | ); |
| 1466 | |
| 1467 | |
| 1468 | ALTER TABLE public.core_networkparametertype OWNER TO postgres; |
| 1469 | |
| 1470 | -- |
| 1471 | -- Name: core_networkparametertype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1472 | -- |
| 1473 | |
| 1474 | CREATE SEQUENCE core_networkparametertype_id_seq |
| 1475 | START WITH 1 |
| 1476 | INCREMENT BY 1 |
| 1477 | NO MINVALUE |
| 1478 | NO MAXVALUE |
| 1479 | CACHE 1; |
| 1480 | |
| 1481 | |
| 1482 | ALTER TABLE public.core_networkparametertype_id_seq OWNER TO postgres; |
| 1483 | |
| 1484 | -- |
| 1485 | -- Name: core_networkparametertype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1486 | -- |
| 1487 | |
| 1488 | ALTER SEQUENCE core_networkparametertype_id_seq OWNED BY core_networkparametertype.id; |
| 1489 | |
| 1490 | |
| 1491 | -- |
| 1492 | -- Name: core_networkslice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1493 | -- |
| 1494 | |
| 1495 | CREATE TABLE core_networkslice ( |
| 1496 | id integer NOT NULL, |
| 1497 | created timestamp with time zone NOT NULL, |
| 1498 | updated timestamp with time zone NOT NULL, |
| 1499 | enacted timestamp with time zone, |
| 1500 | policed timestamp with time zone, |
| 1501 | backend_register character varying(140), |
| 1502 | backend_status character varying(1024) NOT NULL, |
| 1503 | deleted boolean NOT NULL, |
| 1504 | write_protect boolean NOT NULL, |
| 1505 | lazy_blocked boolean NOT NULL, |
| 1506 | no_sync boolean NOT NULL, |
| 1507 | network_id integer NOT NULL, |
| 1508 | slice_id integer NOT NULL |
| 1509 | ); |
| 1510 | |
| 1511 | |
| 1512 | ALTER TABLE public.core_networkslice OWNER TO postgres; |
| 1513 | |
| 1514 | -- |
| 1515 | -- Name: core_networkslice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1516 | -- |
| 1517 | |
| 1518 | CREATE SEQUENCE core_networkslice_id_seq |
| 1519 | START WITH 1 |
| 1520 | INCREMENT BY 1 |
| 1521 | NO MINVALUE |
| 1522 | NO MAXVALUE |
| 1523 | CACHE 1; |
| 1524 | |
| 1525 | |
| 1526 | ALTER TABLE public.core_networkslice_id_seq OWNER TO postgres; |
| 1527 | |
| 1528 | -- |
| 1529 | -- Name: core_networkslice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1530 | -- |
| 1531 | |
| 1532 | ALTER SEQUENCE core_networkslice_id_seq OWNED BY core_networkslice.id; |
| 1533 | |
| 1534 | |
| 1535 | -- |
| 1536 | -- Name: core_networktemplate; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1537 | -- |
| 1538 | |
| 1539 | CREATE TABLE core_networktemplate ( |
| 1540 | id integer NOT NULL, |
| 1541 | created timestamp with time zone NOT NULL, |
| 1542 | updated timestamp with time zone NOT NULL, |
| 1543 | enacted timestamp with time zone, |
| 1544 | policed timestamp with time zone, |
| 1545 | backend_register character varying(140), |
| 1546 | backend_status character varying(1024) NOT NULL, |
| 1547 | deleted boolean NOT NULL, |
| 1548 | write_protect boolean NOT NULL, |
| 1549 | lazy_blocked boolean NOT NULL, |
| 1550 | no_sync boolean NOT NULL, |
| 1551 | name character varying(32) NOT NULL, |
| 1552 | description character varying(1024), |
| 1553 | guaranteed_bandwidth integer NOT NULL, |
| 1554 | visibility character varying(30) NOT NULL, |
| 1555 | translation character varying(30) NOT NULL, |
| 1556 | access character varying(30), |
| 1557 | shared_network_name character varying(30), |
| 1558 | shared_network_id character varying(256), |
| 1559 | topology_kind character varying(30) NOT NULL, |
| 1560 | controller_kind character varying(30) |
| 1561 | ); |
| 1562 | |
| 1563 | |
| 1564 | ALTER TABLE public.core_networktemplate OWNER TO postgres; |
| 1565 | |
| 1566 | -- |
| 1567 | -- Name: core_networktemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1568 | -- |
| 1569 | |
| 1570 | CREATE SEQUENCE core_networktemplate_id_seq |
| 1571 | START WITH 1 |
| 1572 | INCREMENT BY 1 |
| 1573 | NO MINVALUE |
| 1574 | NO MAXVALUE |
| 1575 | CACHE 1; |
| 1576 | |
| 1577 | |
| 1578 | ALTER TABLE public.core_networktemplate_id_seq OWNER TO postgres; |
| 1579 | |
| 1580 | -- |
| 1581 | -- Name: core_networktemplate_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1582 | -- |
| 1583 | |
| 1584 | ALTER SEQUENCE core_networktemplate_id_seq OWNED BY core_networktemplate.id; |
| 1585 | |
| 1586 | |
| 1587 | -- |
| 1588 | -- Name: core_node; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1589 | -- |
| 1590 | |
| 1591 | CREATE TABLE core_node ( |
| 1592 | id integer NOT NULL, |
| 1593 | created timestamp with time zone NOT NULL, |
| 1594 | updated timestamp with time zone NOT NULL, |
| 1595 | enacted timestamp with time zone, |
| 1596 | policed timestamp with time zone, |
| 1597 | backend_register character varying(140), |
| 1598 | backend_status character varying(1024) NOT NULL, |
| 1599 | deleted boolean NOT NULL, |
| 1600 | write_protect boolean NOT NULL, |
| 1601 | lazy_blocked boolean NOT NULL, |
| 1602 | no_sync boolean NOT NULL, |
| 1603 | name character varying(200) NOT NULL, |
| 1604 | site_id integer, |
| 1605 | site_deployment_id integer NOT NULL |
| 1606 | ); |
| 1607 | |
| 1608 | |
| 1609 | ALTER TABLE public.core_node OWNER TO postgres; |
| 1610 | |
| 1611 | -- |
| 1612 | -- Name: core_node_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1613 | -- |
| 1614 | |
| 1615 | CREATE SEQUENCE core_node_id_seq |
| 1616 | START WITH 1 |
| 1617 | INCREMENT BY 1 |
| 1618 | NO MINVALUE |
| 1619 | NO MAXVALUE |
| 1620 | CACHE 1; |
| 1621 | |
| 1622 | |
| 1623 | ALTER TABLE public.core_node_id_seq OWNER TO postgres; |
| 1624 | |
| 1625 | -- |
| 1626 | -- Name: core_node_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1627 | -- |
| 1628 | |
| 1629 | ALTER SEQUENCE core_node_id_seq OWNED BY core_node.id; |
| 1630 | |
| 1631 | |
| 1632 | -- |
| 1633 | -- Name: core_nodelabel; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1634 | -- |
| 1635 | |
| 1636 | CREATE TABLE core_nodelabel ( |
| 1637 | id integer NOT NULL, |
| 1638 | created timestamp with time zone NOT NULL, |
| 1639 | updated timestamp with time zone NOT NULL, |
| 1640 | enacted timestamp with time zone, |
| 1641 | policed timestamp with time zone, |
| 1642 | backend_register character varying(140), |
| 1643 | backend_status character varying(1024) NOT NULL, |
| 1644 | deleted boolean NOT NULL, |
| 1645 | write_protect boolean NOT NULL, |
| 1646 | lazy_blocked boolean NOT NULL, |
| 1647 | no_sync boolean NOT NULL, |
| 1648 | name character varying(200) NOT NULL |
| 1649 | ); |
| 1650 | |
| 1651 | |
| 1652 | ALTER TABLE public.core_nodelabel OWNER TO postgres; |
| 1653 | |
| 1654 | -- |
| 1655 | -- Name: core_nodelabel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1656 | -- |
| 1657 | |
| 1658 | CREATE SEQUENCE core_nodelabel_id_seq |
| 1659 | START WITH 1 |
| 1660 | INCREMENT BY 1 |
| 1661 | NO MINVALUE |
| 1662 | NO MAXVALUE |
| 1663 | CACHE 1; |
| 1664 | |
| 1665 | |
| 1666 | ALTER TABLE public.core_nodelabel_id_seq OWNER TO postgres; |
| 1667 | |
| 1668 | -- |
| 1669 | -- Name: core_nodelabel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1670 | -- |
| 1671 | |
| 1672 | ALTER SEQUENCE core_nodelabel_id_seq OWNED BY core_nodelabel.id; |
| 1673 | |
| 1674 | |
| 1675 | -- |
| 1676 | -- Name: core_nodelabel_node; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1677 | -- |
| 1678 | |
| 1679 | CREATE TABLE core_nodelabel_node ( |
| 1680 | id integer NOT NULL, |
| 1681 | nodelabel_id integer NOT NULL, |
| 1682 | node_id integer NOT NULL |
| 1683 | ); |
| 1684 | |
| 1685 | |
| 1686 | ALTER TABLE public.core_nodelabel_node OWNER TO postgres; |
| 1687 | |
| 1688 | -- |
| 1689 | -- Name: core_nodelabel_node_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1690 | -- |
| 1691 | |
| 1692 | CREATE SEQUENCE core_nodelabel_node_id_seq |
| 1693 | START WITH 1 |
| 1694 | INCREMENT BY 1 |
| 1695 | NO MINVALUE |
| 1696 | NO MAXVALUE |
| 1697 | CACHE 1; |
| 1698 | |
| 1699 | |
| 1700 | ALTER TABLE public.core_nodelabel_node_id_seq OWNER TO postgres; |
| 1701 | |
| 1702 | -- |
| 1703 | -- Name: core_nodelabel_node_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1704 | -- |
| 1705 | |
| 1706 | ALTER SEQUENCE core_nodelabel_node_id_seq OWNED BY core_nodelabel_node.id; |
| 1707 | |
| 1708 | |
| 1709 | -- |
| 1710 | -- Name: core_payment; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1711 | -- |
| 1712 | |
| 1713 | CREATE TABLE core_payment ( |
| 1714 | id integer NOT NULL, |
| 1715 | created timestamp with time zone NOT NULL, |
| 1716 | updated timestamp with time zone NOT NULL, |
| 1717 | enacted timestamp with time zone, |
| 1718 | policed timestamp with time zone, |
| 1719 | backend_register character varying(140), |
| 1720 | backend_status character varying(1024) NOT NULL, |
| 1721 | deleted boolean NOT NULL, |
| 1722 | write_protect boolean NOT NULL, |
| 1723 | lazy_blocked boolean NOT NULL, |
| 1724 | no_sync boolean NOT NULL, |
| 1725 | amount double precision NOT NULL, |
| 1726 | date timestamp with time zone NOT NULL, |
| 1727 | account_id integer NOT NULL |
| 1728 | ); |
| 1729 | |
| 1730 | |
| 1731 | ALTER TABLE public.core_payment OWNER TO postgres; |
| 1732 | |
| 1733 | -- |
| 1734 | -- Name: core_payment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1735 | -- |
| 1736 | |
| 1737 | CREATE SEQUENCE core_payment_id_seq |
| 1738 | START WITH 1 |
| 1739 | INCREMENT BY 1 |
| 1740 | NO MINVALUE |
| 1741 | NO MAXVALUE |
| 1742 | CACHE 1; |
| 1743 | |
| 1744 | |
| 1745 | ALTER TABLE public.core_payment_id_seq OWNER TO postgres; |
| 1746 | |
| 1747 | -- |
| 1748 | -- Name: core_payment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1749 | -- |
| 1750 | |
| 1751 | ALTER SEQUENCE core_payment_id_seq OWNED BY core_payment.id; |
| 1752 | |
| 1753 | |
| 1754 | -- |
| 1755 | -- Name: core_port; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1756 | -- |
| 1757 | |
| 1758 | CREATE TABLE core_port ( |
| 1759 | id integer NOT NULL, |
| 1760 | created timestamp with time zone NOT NULL, |
| 1761 | updated timestamp with time zone NOT NULL, |
| 1762 | enacted timestamp with time zone, |
| 1763 | policed timestamp with time zone, |
| 1764 | backend_register character varying(140), |
| 1765 | backend_status character varying(1024) NOT NULL, |
| 1766 | deleted boolean NOT NULL, |
| 1767 | write_protect boolean NOT NULL, |
| 1768 | lazy_blocked boolean NOT NULL, |
| 1769 | no_sync boolean NOT NULL, |
| 1770 | ip inet, |
| 1771 | port_id character varying(256), |
| 1772 | mac character varying(256), |
| 1773 | xos_created boolean NOT NULL, |
| 1774 | instance_id integer, |
| 1775 | network_id integer NOT NULL |
| 1776 | ); |
| 1777 | |
| 1778 | |
| 1779 | ALTER TABLE public.core_port OWNER TO postgres; |
| 1780 | |
| 1781 | -- |
| 1782 | -- Name: core_port_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1783 | -- |
| 1784 | |
| 1785 | CREATE SEQUENCE core_port_id_seq |
| 1786 | START WITH 1 |
| 1787 | INCREMENT BY 1 |
| 1788 | NO MINVALUE |
| 1789 | NO MAXVALUE |
| 1790 | CACHE 1; |
| 1791 | |
| 1792 | |
| 1793 | ALTER TABLE public.core_port_id_seq OWNER TO postgres; |
| 1794 | |
| 1795 | -- |
| 1796 | -- Name: core_port_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1797 | -- |
| 1798 | |
| 1799 | ALTER SEQUENCE core_port_id_seq OWNED BY core_port.id; |
| 1800 | |
| 1801 | |
| 1802 | -- |
| 1803 | -- Name: core_program; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1804 | -- |
| 1805 | |
| 1806 | CREATE TABLE core_program ( |
| 1807 | id integer NOT NULL, |
| 1808 | created timestamp with time zone NOT NULL, |
| 1809 | updated timestamp with time zone NOT NULL, |
| 1810 | enacted timestamp with time zone, |
| 1811 | policed timestamp with time zone, |
| 1812 | backend_register character varying(140), |
| 1813 | backend_status character varying(1024) NOT NULL, |
| 1814 | deleted boolean NOT NULL, |
| 1815 | write_protect boolean NOT NULL, |
| 1816 | lazy_blocked boolean NOT NULL, |
| 1817 | no_sync boolean NOT NULL, |
| 1818 | name character varying(30) NOT NULL, |
| 1819 | description text, |
| 1820 | kind character varying(30) NOT NULL, |
| 1821 | command character varying(30), |
| 1822 | contents text, |
| 1823 | output text, |
| 1824 | messages text, |
| 1825 | status text, |
| 1826 | owner_id integer |
| 1827 | ); |
| 1828 | |
| 1829 | |
| 1830 | ALTER TABLE public.core_program OWNER TO postgres; |
| 1831 | |
| 1832 | -- |
| 1833 | -- Name: core_program_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1834 | -- |
| 1835 | |
| 1836 | CREATE SEQUENCE core_program_id_seq |
| 1837 | START WITH 1 |
| 1838 | INCREMENT BY 1 |
| 1839 | NO MINVALUE |
| 1840 | NO MAXVALUE |
| 1841 | CACHE 1; |
| 1842 | |
| 1843 | |
| 1844 | ALTER TABLE public.core_program_id_seq OWNER TO postgres; |
| 1845 | |
| 1846 | -- |
| 1847 | -- Name: core_program_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1848 | -- |
| 1849 | |
| 1850 | ALTER SEQUENCE core_program_id_seq OWNED BY core_program.id; |
| 1851 | |
| 1852 | |
| 1853 | -- |
| 1854 | -- Name: core_project; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1855 | -- |
| 1856 | |
| 1857 | CREATE TABLE core_project ( |
| 1858 | id integer NOT NULL, |
| 1859 | created timestamp with time zone NOT NULL, |
| 1860 | updated timestamp with time zone NOT NULL, |
| 1861 | enacted timestamp with time zone, |
| 1862 | policed timestamp with time zone, |
| 1863 | backend_register character varying(140), |
| 1864 | backend_status character varying(1024) NOT NULL, |
| 1865 | deleted boolean NOT NULL, |
| 1866 | write_protect boolean NOT NULL, |
| 1867 | lazy_blocked boolean NOT NULL, |
| 1868 | no_sync boolean NOT NULL, |
| 1869 | name character varying(200) NOT NULL |
| 1870 | ); |
| 1871 | |
| 1872 | |
| 1873 | ALTER TABLE public.core_project OWNER TO postgres; |
| 1874 | |
| 1875 | -- |
| 1876 | -- Name: core_project_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1877 | -- |
| 1878 | |
| 1879 | CREATE SEQUENCE core_project_id_seq |
| 1880 | START WITH 1 |
| 1881 | INCREMENT BY 1 |
| 1882 | NO MINVALUE |
| 1883 | NO MAXVALUE |
| 1884 | CACHE 1; |
| 1885 | |
| 1886 | |
| 1887 | ALTER TABLE public.core_project_id_seq OWNER TO postgres; |
| 1888 | |
| 1889 | -- |
| 1890 | -- Name: core_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1891 | -- |
| 1892 | |
| 1893 | ALTER SEQUENCE core_project_id_seq OWNED BY core_project.id; |
| 1894 | |
| 1895 | |
| 1896 | -- |
| 1897 | -- Name: core_reservation; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1898 | -- |
| 1899 | |
| 1900 | CREATE TABLE core_reservation ( |
| 1901 | id integer NOT NULL, |
| 1902 | created timestamp with time zone NOT NULL, |
| 1903 | updated timestamp with time zone NOT NULL, |
| 1904 | enacted timestamp with time zone, |
| 1905 | policed timestamp with time zone, |
| 1906 | backend_register character varying(140), |
| 1907 | backend_status character varying(1024) NOT NULL, |
| 1908 | deleted boolean NOT NULL, |
| 1909 | write_protect boolean NOT NULL, |
| 1910 | lazy_blocked boolean NOT NULL, |
| 1911 | no_sync boolean NOT NULL, |
| 1912 | "startTime" timestamp with time zone NOT NULL, |
| 1913 | duration integer NOT NULL, |
| 1914 | slice_id integer NOT NULL |
| 1915 | ); |
| 1916 | |
| 1917 | |
| 1918 | ALTER TABLE public.core_reservation OWNER TO postgres; |
| 1919 | |
| 1920 | -- |
| 1921 | -- Name: core_reservation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1922 | -- |
| 1923 | |
| 1924 | CREATE SEQUENCE core_reservation_id_seq |
| 1925 | START WITH 1 |
| 1926 | INCREMENT BY 1 |
| 1927 | NO MINVALUE |
| 1928 | NO MAXVALUE |
| 1929 | CACHE 1; |
| 1930 | |
| 1931 | |
| 1932 | ALTER TABLE public.core_reservation_id_seq OWNER TO postgres; |
| 1933 | |
| 1934 | -- |
| 1935 | -- Name: core_reservation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1936 | -- |
| 1937 | |
| 1938 | ALTER SEQUENCE core_reservation_id_seq OWNED BY core_reservation.id; |
| 1939 | |
| 1940 | |
| 1941 | -- |
| 1942 | -- Name: core_reservedresource; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1943 | -- |
| 1944 | |
| 1945 | CREATE TABLE core_reservedresource ( |
| 1946 | id integer NOT NULL, |
| 1947 | created timestamp with time zone NOT NULL, |
| 1948 | updated timestamp with time zone NOT NULL, |
| 1949 | enacted timestamp with time zone, |
| 1950 | policed timestamp with time zone, |
| 1951 | backend_register character varying(140), |
| 1952 | backend_status character varying(1024) NOT NULL, |
| 1953 | deleted boolean NOT NULL, |
| 1954 | write_protect boolean NOT NULL, |
| 1955 | lazy_blocked boolean NOT NULL, |
| 1956 | no_sync boolean NOT NULL, |
| 1957 | quantity integer NOT NULL, |
| 1958 | instance_id integer NOT NULL, |
| 1959 | "reservationSet_id" integer NOT NULL, |
| 1960 | resource_id integer NOT NULL |
| 1961 | ); |
| 1962 | |
| 1963 | |
| 1964 | ALTER TABLE public.core_reservedresource OWNER TO postgres; |
| 1965 | |
| 1966 | -- |
| 1967 | -- Name: core_reservedresource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 1968 | -- |
| 1969 | |
| 1970 | CREATE SEQUENCE core_reservedresource_id_seq |
| 1971 | START WITH 1 |
| 1972 | INCREMENT BY 1 |
| 1973 | NO MINVALUE |
| 1974 | NO MAXVALUE |
| 1975 | CACHE 1; |
| 1976 | |
| 1977 | |
| 1978 | ALTER TABLE public.core_reservedresource_id_seq OWNER TO postgres; |
| 1979 | |
| 1980 | -- |
| 1981 | -- Name: core_reservedresource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 1982 | -- |
| 1983 | |
| 1984 | ALTER SEQUENCE core_reservedresource_id_seq OWNED BY core_reservedresource.id; |
| 1985 | |
| 1986 | |
| 1987 | -- |
| 1988 | -- Name: core_role; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 1989 | -- |
| 1990 | |
| 1991 | CREATE TABLE core_role ( |
| 1992 | id integer NOT NULL, |
| 1993 | created timestamp with time zone NOT NULL, |
| 1994 | updated timestamp with time zone NOT NULL, |
| 1995 | enacted timestamp with time zone, |
| 1996 | policed timestamp with time zone, |
| 1997 | backend_register character varying(140), |
| 1998 | backend_status character varying(1024) NOT NULL, |
| 1999 | deleted boolean NOT NULL, |
| 2000 | write_protect boolean NOT NULL, |
| 2001 | lazy_blocked boolean NOT NULL, |
| 2002 | no_sync boolean NOT NULL, |
| 2003 | role_type character varying(80) NOT NULL, |
| 2004 | role character varying(80), |
| 2005 | description character varying(120) NOT NULL, |
| 2006 | content_type_id integer NOT NULL |
| 2007 | ); |
| 2008 | |
| 2009 | |
| 2010 | ALTER TABLE public.core_role OWNER TO postgres; |
| 2011 | |
| 2012 | -- |
| 2013 | -- Name: core_role_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2014 | -- |
| 2015 | |
| 2016 | CREATE SEQUENCE core_role_id_seq |
| 2017 | START WITH 1 |
| 2018 | INCREMENT BY 1 |
| 2019 | NO MINVALUE |
| 2020 | NO MAXVALUE |
| 2021 | CACHE 1; |
| 2022 | |
| 2023 | |
| 2024 | ALTER TABLE public.core_role_id_seq OWNER TO postgres; |
| 2025 | |
| 2026 | -- |
| 2027 | -- Name: core_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2028 | -- |
| 2029 | |
| 2030 | ALTER SEQUENCE core_role_id_seq OWNED BY core_role.id; |
| 2031 | |
| 2032 | |
| 2033 | -- |
| 2034 | -- Name: core_router; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2035 | -- |
| 2036 | |
| 2037 | CREATE TABLE core_router ( |
| 2038 | id integer NOT NULL, |
| 2039 | created timestamp with time zone NOT NULL, |
| 2040 | updated timestamp with time zone NOT NULL, |
| 2041 | enacted timestamp with time zone, |
| 2042 | policed timestamp with time zone, |
| 2043 | backend_register character varying(140), |
| 2044 | backend_status character varying(1024) NOT NULL, |
| 2045 | deleted boolean NOT NULL, |
| 2046 | write_protect boolean NOT NULL, |
| 2047 | lazy_blocked boolean NOT NULL, |
| 2048 | no_sync boolean NOT NULL, |
| 2049 | name character varying(32) NOT NULL, |
| 2050 | owner_id integer NOT NULL |
| 2051 | ); |
| 2052 | |
| 2053 | |
| 2054 | ALTER TABLE public.core_router OWNER TO postgres; |
| 2055 | |
| 2056 | -- |
| 2057 | -- Name: core_router_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2058 | -- |
| 2059 | |
| 2060 | CREATE SEQUENCE core_router_id_seq |
| 2061 | START WITH 1 |
| 2062 | INCREMENT BY 1 |
| 2063 | NO MINVALUE |
| 2064 | NO MAXVALUE |
| 2065 | CACHE 1; |
| 2066 | |
| 2067 | |
| 2068 | ALTER TABLE public.core_router_id_seq OWNER TO postgres; |
| 2069 | |
| 2070 | -- |
| 2071 | -- Name: core_router_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2072 | -- |
| 2073 | |
| 2074 | ALTER SEQUENCE core_router_id_seq OWNED BY core_router.id; |
| 2075 | |
| 2076 | |
| 2077 | -- |
| 2078 | -- Name: core_router_networks; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2079 | -- |
| 2080 | |
| 2081 | CREATE TABLE core_router_networks ( |
| 2082 | id integer NOT NULL, |
| 2083 | router_id integer NOT NULL, |
| 2084 | network_id integer NOT NULL |
| 2085 | ); |
| 2086 | |
| 2087 | |
| 2088 | ALTER TABLE public.core_router_networks OWNER TO postgres; |
| 2089 | |
| 2090 | -- |
| 2091 | -- Name: core_router_networks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2092 | -- |
| 2093 | |
| 2094 | CREATE SEQUENCE core_router_networks_id_seq |
| 2095 | START WITH 1 |
| 2096 | INCREMENT BY 1 |
| 2097 | NO MINVALUE |
| 2098 | NO MAXVALUE |
| 2099 | CACHE 1; |
| 2100 | |
| 2101 | |
| 2102 | ALTER TABLE public.core_router_networks_id_seq OWNER TO postgres; |
| 2103 | |
| 2104 | -- |
| 2105 | -- Name: core_router_networks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2106 | -- |
| 2107 | |
| 2108 | ALTER SEQUENCE core_router_networks_id_seq OWNED BY core_router_networks.id; |
| 2109 | |
| 2110 | |
| 2111 | -- |
| 2112 | -- Name: core_router_permittedNetworks; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2113 | -- |
| 2114 | |
| 2115 | CREATE TABLE "core_router_permittedNetworks" ( |
| 2116 | id integer NOT NULL, |
| 2117 | router_id integer NOT NULL, |
| 2118 | network_id integer NOT NULL |
| 2119 | ); |
| 2120 | |
| 2121 | |
| 2122 | ALTER TABLE public."core_router_permittedNetworks" OWNER TO postgres; |
| 2123 | |
| 2124 | -- |
| 2125 | -- Name: core_router_permittedNetworks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2126 | -- |
| 2127 | |
| 2128 | CREATE SEQUENCE "core_router_permittedNetworks_id_seq" |
| 2129 | START WITH 1 |
| 2130 | INCREMENT BY 1 |
| 2131 | NO MINVALUE |
| 2132 | NO MAXVALUE |
| 2133 | CACHE 1; |
| 2134 | |
| 2135 | |
| 2136 | ALTER TABLE public."core_router_permittedNetworks_id_seq" OWNER TO postgres; |
| 2137 | |
| 2138 | -- |
| 2139 | -- Name: core_router_permittedNetworks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2140 | -- |
| 2141 | |
| 2142 | ALTER SEQUENCE "core_router_permittedNetworks_id_seq" OWNED BY "core_router_permittedNetworks".id; |
| 2143 | |
| 2144 | |
| 2145 | -- |
| 2146 | -- Name: core_service; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2147 | -- |
| 2148 | |
| 2149 | CREATE TABLE core_service ( |
| 2150 | id integer NOT NULL, |
| 2151 | created timestamp with time zone NOT NULL, |
| 2152 | updated timestamp with time zone NOT NULL, |
| 2153 | enacted timestamp with time zone, |
| 2154 | policed timestamp with time zone, |
| 2155 | backend_register character varying(140), |
| 2156 | backend_status character varying(1024) NOT NULL, |
| 2157 | deleted boolean NOT NULL, |
| 2158 | write_protect boolean NOT NULL, |
| 2159 | lazy_blocked boolean NOT NULL, |
| 2160 | no_sync boolean NOT NULL, |
| 2161 | description text, |
| 2162 | enabled boolean NOT NULL, |
| 2163 | kind character varying(30) NOT NULL, |
| 2164 | name character varying(30) NOT NULL, |
| 2165 | "versionNumber" character varying(30) NOT NULL, |
| 2166 | published boolean NOT NULL, |
| 2167 | view_url character varying(1024), |
| 2168 | icon_url character varying(1024), |
| 2169 | public_key text, |
| 2170 | private_key_fn character varying(1024), |
| 2171 | service_specific_id character varying(30), |
| 2172 | service_specific_attribute text |
| 2173 | ); |
| 2174 | |
| 2175 | |
| 2176 | ALTER TABLE public.core_service OWNER TO postgres; |
| 2177 | |
| 2178 | -- |
| 2179 | -- Name: core_service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2180 | -- |
| 2181 | |
| 2182 | CREATE SEQUENCE core_service_id_seq |
| 2183 | START WITH 1 |
| 2184 | INCREMENT BY 1 |
| 2185 | NO MINVALUE |
| 2186 | NO MAXVALUE |
| 2187 | CACHE 1; |
| 2188 | |
| 2189 | |
| 2190 | ALTER TABLE public.core_service_id_seq OWNER TO postgres; |
| 2191 | |
| 2192 | -- |
| 2193 | -- Name: core_service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2194 | -- |
| 2195 | |
| 2196 | ALTER SEQUENCE core_service_id_seq OWNED BY core_service.id; |
| 2197 | |
| 2198 | |
| 2199 | -- |
| 2200 | -- Name: core_serviceattribute; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2201 | -- |
| 2202 | |
| 2203 | CREATE TABLE core_serviceattribute ( |
| 2204 | id integer NOT NULL, |
| 2205 | created timestamp with time zone NOT NULL, |
| 2206 | updated timestamp with time zone NOT NULL, |
| 2207 | enacted timestamp with time zone, |
| 2208 | policed timestamp with time zone, |
| 2209 | backend_register character varying(140), |
| 2210 | backend_status character varying(1024) NOT NULL, |
| 2211 | deleted boolean NOT NULL, |
| 2212 | write_protect boolean NOT NULL, |
| 2213 | lazy_blocked boolean NOT NULL, |
| 2214 | no_sync boolean NOT NULL, |
| 2215 | name character varying(128) NOT NULL, |
| 2216 | value character varying(1024) NOT NULL, |
| 2217 | service_id integer NOT NULL |
| 2218 | ); |
| 2219 | |
| 2220 | |
| 2221 | ALTER TABLE public.core_serviceattribute OWNER TO postgres; |
| 2222 | |
| 2223 | -- |
| 2224 | -- Name: core_serviceattribute_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2225 | -- |
| 2226 | |
| 2227 | CREATE SEQUENCE core_serviceattribute_id_seq |
| 2228 | START WITH 1 |
| 2229 | INCREMENT BY 1 |
| 2230 | NO MINVALUE |
| 2231 | NO MAXVALUE |
| 2232 | CACHE 1; |
| 2233 | |
| 2234 | |
| 2235 | ALTER TABLE public.core_serviceattribute_id_seq OWNER TO postgres; |
| 2236 | |
| 2237 | -- |
| 2238 | -- Name: core_serviceattribute_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2239 | -- |
| 2240 | |
| 2241 | ALTER SEQUENCE core_serviceattribute_id_seq OWNED BY core_serviceattribute.id; |
| 2242 | |
| 2243 | |
| 2244 | -- |
| 2245 | -- Name: core_serviceclass; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2246 | -- |
| 2247 | |
| 2248 | CREATE TABLE core_serviceclass ( |
| 2249 | id integer NOT NULL, |
| 2250 | created timestamp with time zone NOT NULL, |
| 2251 | updated timestamp with time zone NOT NULL, |
| 2252 | enacted timestamp with time zone, |
| 2253 | policed timestamp with time zone, |
| 2254 | backend_register character varying(140), |
| 2255 | backend_status character varying(1024) NOT NULL, |
| 2256 | deleted boolean NOT NULL, |
| 2257 | write_protect boolean NOT NULL, |
| 2258 | lazy_blocked boolean NOT NULL, |
| 2259 | no_sync boolean NOT NULL, |
| 2260 | name character varying(32) NOT NULL, |
| 2261 | description character varying(255) NOT NULL, |
| 2262 | commitment integer NOT NULL, |
| 2263 | "membershipFee" integer NOT NULL, |
| 2264 | "membershipFeeMonths" integer NOT NULL, |
| 2265 | "upgradeRequiresApproval" boolean NOT NULL |
| 2266 | ); |
| 2267 | |
| 2268 | |
| 2269 | ALTER TABLE public.core_serviceclass OWNER TO postgres; |
| 2270 | |
| 2271 | -- |
| 2272 | -- Name: core_serviceclass_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2273 | -- |
| 2274 | |
| 2275 | CREATE SEQUENCE core_serviceclass_id_seq |
| 2276 | START WITH 1 |
| 2277 | INCREMENT BY 1 |
| 2278 | NO MINVALUE |
| 2279 | NO MAXVALUE |
| 2280 | CACHE 1; |
| 2281 | |
| 2282 | |
| 2283 | ALTER TABLE public.core_serviceclass_id_seq OWNER TO postgres; |
| 2284 | |
| 2285 | -- |
| 2286 | -- Name: core_serviceclass_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2287 | -- |
| 2288 | |
| 2289 | ALTER SEQUENCE core_serviceclass_id_seq OWNED BY core_serviceclass.id; |
| 2290 | |
| 2291 | |
| 2292 | -- |
| 2293 | -- Name: core_serviceclass_upgradeFrom; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2294 | -- |
| 2295 | |
| 2296 | CREATE TABLE "core_serviceclass_upgradeFrom" ( |
| 2297 | id integer NOT NULL, |
| 2298 | from_serviceclass_id integer NOT NULL, |
| 2299 | to_serviceclass_id integer NOT NULL |
| 2300 | ); |
| 2301 | |
| 2302 | |
| 2303 | ALTER TABLE public."core_serviceclass_upgradeFrom" OWNER TO postgres; |
| 2304 | |
| 2305 | -- |
| 2306 | -- Name: core_serviceclass_upgradeFrom_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2307 | -- |
| 2308 | |
| 2309 | CREATE SEQUENCE "core_serviceclass_upgradeFrom_id_seq" |
| 2310 | START WITH 1 |
| 2311 | INCREMENT BY 1 |
| 2312 | NO MINVALUE |
| 2313 | NO MAXVALUE |
| 2314 | CACHE 1; |
| 2315 | |
| 2316 | |
| 2317 | ALTER TABLE public."core_serviceclass_upgradeFrom_id_seq" OWNER TO postgres; |
| 2318 | |
| 2319 | -- |
| 2320 | -- Name: core_serviceclass_upgradeFrom_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2321 | -- |
| 2322 | |
| 2323 | ALTER SEQUENCE "core_serviceclass_upgradeFrom_id_seq" OWNED BY "core_serviceclass_upgradeFrom".id; |
| 2324 | |
| 2325 | |
| 2326 | -- |
| 2327 | -- Name: core_serviceprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2328 | -- |
| 2329 | |
| 2330 | CREATE TABLE core_serviceprivilege ( |
| 2331 | id integer NOT NULL, |
| 2332 | created timestamp with time zone NOT NULL, |
| 2333 | updated timestamp with time zone NOT NULL, |
| 2334 | enacted timestamp with time zone, |
| 2335 | policed timestamp with time zone, |
| 2336 | backend_register character varying(140), |
| 2337 | backend_status character varying(1024) NOT NULL, |
| 2338 | deleted boolean NOT NULL, |
| 2339 | write_protect boolean NOT NULL, |
| 2340 | lazy_blocked boolean NOT NULL, |
| 2341 | no_sync boolean NOT NULL, |
| 2342 | role_id integer NOT NULL, |
| 2343 | service_id integer NOT NULL, |
| 2344 | user_id integer NOT NULL |
| 2345 | ); |
| 2346 | |
| 2347 | |
| 2348 | ALTER TABLE public.core_serviceprivilege OWNER TO postgres; |
| 2349 | |
| 2350 | -- |
| 2351 | -- Name: core_serviceprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2352 | -- |
| 2353 | |
| 2354 | CREATE SEQUENCE core_serviceprivilege_id_seq |
| 2355 | START WITH 1 |
| 2356 | INCREMENT BY 1 |
| 2357 | NO MINVALUE |
| 2358 | NO MAXVALUE |
| 2359 | CACHE 1; |
| 2360 | |
| 2361 | |
| 2362 | ALTER TABLE public.core_serviceprivilege_id_seq OWNER TO postgres; |
| 2363 | |
| 2364 | -- |
| 2365 | -- Name: core_serviceprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2366 | -- |
| 2367 | |
| 2368 | ALTER SEQUENCE core_serviceprivilege_id_seq OWNED BY core_serviceprivilege.id; |
| 2369 | |
| 2370 | |
| 2371 | -- |
| 2372 | -- Name: core_serviceresource; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2373 | -- |
| 2374 | |
| 2375 | CREATE TABLE core_serviceresource ( |
| 2376 | id integer NOT NULL, |
| 2377 | created timestamp with time zone NOT NULL, |
| 2378 | updated timestamp with time zone NOT NULL, |
| 2379 | enacted timestamp with time zone, |
| 2380 | policed timestamp with time zone, |
| 2381 | backend_register character varying(140), |
| 2382 | backend_status character varying(1024) NOT NULL, |
| 2383 | deleted boolean NOT NULL, |
| 2384 | write_protect boolean NOT NULL, |
| 2385 | lazy_blocked boolean NOT NULL, |
| 2386 | no_sync boolean NOT NULL, |
| 2387 | name character varying(32) NOT NULL, |
| 2388 | "maxUnitsDeployment" integer NOT NULL, |
| 2389 | "maxUnitsNode" integer NOT NULL, |
| 2390 | "maxDuration" integer NOT NULL, |
| 2391 | "bucketInRate" integer NOT NULL, |
| 2392 | "bucketMaxSize" integer NOT NULL, |
| 2393 | cost integer NOT NULL, |
| 2394 | "calendarReservable" boolean NOT NULL, |
| 2395 | "serviceClass_id" integer NOT NULL |
| 2396 | ); |
| 2397 | |
| 2398 | |
| 2399 | ALTER TABLE public.core_serviceresource OWNER TO postgres; |
| 2400 | |
| 2401 | -- |
| 2402 | -- Name: core_serviceresource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2403 | -- |
| 2404 | |
| 2405 | CREATE SEQUENCE core_serviceresource_id_seq |
| 2406 | START WITH 1 |
| 2407 | INCREMENT BY 1 |
| 2408 | NO MINVALUE |
| 2409 | NO MAXVALUE |
| 2410 | CACHE 1; |
| 2411 | |
| 2412 | |
| 2413 | ALTER TABLE public.core_serviceresource_id_seq OWNER TO postgres; |
| 2414 | |
| 2415 | -- |
| 2416 | -- Name: core_serviceresource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2417 | -- |
| 2418 | |
| 2419 | ALTER SEQUENCE core_serviceresource_id_seq OWNED BY core_serviceresource.id; |
| 2420 | |
| 2421 | |
| 2422 | -- |
| 2423 | -- Name: core_servicerole; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2424 | -- |
| 2425 | |
| 2426 | CREATE TABLE core_servicerole ( |
| 2427 | id integer NOT NULL, |
| 2428 | created timestamp with time zone NOT NULL, |
| 2429 | updated timestamp with time zone NOT NULL, |
| 2430 | enacted timestamp with time zone, |
| 2431 | policed timestamp with time zone, |
| 2432 | backend_register character varying(140), |
| 2433 | backend_status character varying(1024) NOT NULL, |
| 2434 | deleted boolean NOT NULL, |
| 2435 | write_protect boolean NOT NULL, |
| 2436 | lazy_blocked boolean NOT NULL, |
| 2437 | no_sync boolean NOT NULL, |
| 2438 | role character varying(30) NOT NULL |
| 2439 | ); |
| 2440 | |
| 2441 | |
| 2442 | ALTER TABLE public.core_servicerole OWNER TO postgres; |
| 2443 | |
| 2444 | -- |
| 2445 | -- Name: core_servicerole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2446 | -- |
| 2447 | |
| 2448 | CREATE SEQUENCE core_servicerole_id_seq |
| 2449 | START WITH 1 |
| 2450 | INCREMENT BY 1 |
| 2451 | NO MINVALUE |
| 2452 | NO MAXVALUE |
| 2453 | CACHE 1; |
| 2454 | |
| 2455 | |
| 2456 | ALTER TABLE public.core_servicerole_id_seq OWNER TO postgres; |
| 2457 | |
| 2458 | -- |
| 2459 | -- Name: core_servicerole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2460 | -- |
| 2461 | |
| 2462 | ALTER SEQUENCE core_servicerole_id_seq OWNED BY core_servicerole.id; |
| 2463 | |
| 2464 | |
| 2465 | -- |
| 2466 | -- Name: core_site; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2467 | -- |
| 2468 | |
| 2469 | CREATE TABLE core_site ( |
| 2470 | id integer NOT NULL, |
| 2471 | created timestamp with time zone NOT NULL, |
| 2472 | updated timestamp with time zone NOT NULL, |
| 2473 | enacted timestamp with time zone, |
| 2474 | policed timestamp with time zone, |
| 2475 | backend_register character varying(140), |
| 2476 | backend_status character varying(1024) NOT NULL, |
| 2477 | deleted boolean NOT NULL, |
| 2478 | write_protect boolean NOT NULL, |
| 2479 | lazy_blocked boolean NOT NULL, |
| 2480 | no_sync boolean NOT NULL, |
| 2481 | name character varying(200) NOT NULL, |
| 2482 | site_url character varying(512), |
| 2483 | enabled boolean NOT NULL, |
| 2484 | hosts_nodes boolean NOT NULL, |
| 2485 | hosts_users boolean NOT NULL, |
| 2486 | location character varying(42) NOT NULL, |
| 2487 | longitude double precision, |
| 2488 | latitude double precision, |
| 2489 | login_base character varying(50) NOT NULL, |
| 2490 | is_public boolean NOT NULL, |
| 2491 | abbreviated_name character varying(80) NOT NULL |
| 2492 | ); |
| 2493 | |
| 2494 | |
| 2495 | ALTER TABLE public.core_site OWNER TO postgres; |
| 2496 | |
| 2497 | -- |
| 2498 | -- Name: core_site_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2499 | -- |
| 2500 | |
| 2501 | CREATE SEQUENCE core_site_id_seq |
| 2502 | START WITH 1 |
| 2503 | INCREMENT BY 1 |
| 2504 | NO MINVALUE |
| 2505 | NO MAXVALUE |
| 2506 | CACHE 1; |
| 2507 | |
| 2508 | |
| 2509 | ALTER TABLE public.core_site_id_seq OWNER TO postgres; |
| 2510 | |
| 2511 | -- |
| 2512 | -- Name: core_site_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2513 | -- |
| 2514 | |
| 2515 | ALTER SEQUENCE core_site_id_seq OWNED BY core_site.id; |
| 2516 | |
| 2517 | |
| 2518 | -- |
| 2519 | -- Name: core_sitecredential; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2520 | -- |
| 2521 | |
| 2522 | CREATE TABLE core_sitecredential ( |
| 2523 | id integer NOT NULL, |
| 2524 | created timestamp with time zone NOT NULL, |
| 2525 | updated timestamp with time zone NOT NULL, |
| 2526 | enacted timestamp with time zone, |
| 2527 | policed timestamp with time zone, |
| 2528 | backend_register character varying(140), |
| 2529 | backend_status character varying(1024) NOT NULL, |
| 2530 | deleted boolean NOT NULL, |
| 2531 | write_protect boolean NOT NULL, |
| 2532 | lazy_blocked boolean NOT NULL, |
| 2533 | no_sync boolean NOT NULL, |
| 2534 | name character varying(128) NOT NULL, |
| 2535 | key_id character varying(1024) NOT NULL, |
| 2536 | enc_value text NOT NULL, |
| 2537 | site_id integer NOT NULL |
| 2538 | ); |
| 2539 | |
| 2540 | |
| 2541 | ALTER TABLE public.core_sitecredential OWNER TO postgres; |
| 2542 | |
| 2543 | -- |
| 2544 | -- Name: core_sitecredential_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2545 | -- |
| 2546 | |
| 2547 | CREATE SEQUENCE core_sitecredential_id_seq |
| 2548 | START WITH 1 |
| 2549 | INCREMENT BY 1 |
| 2550 | NO MINVALUE |
| 2551 | NO MAXVALUE |
| 2552 | CACHE 1; |
| 2553 | |
| 2554 | |
| 2555 | ALTER TABLE public.core_sitecredential_id_seq OWNER TO postgres; |
| 2556 | |
| 2557 | -- |
| 2558 | -- Name: core_sitecredential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2559 | -- |
| 2560 | |
| 2561 | ALTER SEQUENCE core_sitecredential_id_seq OWNED BY core_sitecredential.id; |
| 2562 | |
| 2563 | |
| 2564 | -- |
| 2565 | -- Name: core_sitedeployment; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2566 | -- |
| 2567 | |
| 2568 | CREATE TABLE core_sitedeployment ( |
| 2569 | id integer NOT NULL, |
| 2570 | created timestamp with time zone NOT NULL, |
| 2571 | updated timestamp with time zone NOT NULL, |
| 2572 | enacted timestamp with time zone, |
| 2573 | policed timestamp with time zone, |
| 2574 | backend_register character varying(140), |
| 2575 | backend_status character varying(1024) NOT NULL, |
| 2576 | deleted boolean NOT NULL, |
| 2577 | write_protect boolean NOT NULL, |
| 2578 | lazy_blocked boolean NOT NULL, |
| 2579 | no_sync boolean NOT NULL, |
| 2580 | availability_zone character varying(200), |
| 2581 | controller_id integer, |
| 2582 | deployment_id integer NOT NULL, |
| 2583 | site_id integer NOT NULL |
| 2584 | ); |
| 2585 | |
| 2586 | |
| 2587 | ALTER TABLE public.core_sitedeployment OWNER TO postgres; |
| 2588 | |
| 2589 | -- |
| 2590 | -- Name: core_sitedeployment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2591 | -- |
| 2592 | |
| 2593 | CREATE SEQUENCE core_sitedeployment_id_seq |
| 2594 | START WITH 1 |
| 2595 | INCREMENT BY 1 |
| 2596 | NO MINVALUE |
| 2597 | NO MAXVALUE |
| 2598 | CACHE 1; |
| 2599 | |
| 2600 | |
| 2601 | ALTER TABLE public.core_sitedeployment_id_seq OWNER TO postgres; |
| 2602 | |
| 2603 | -- |
| 2604 | -- Name: core_sitedeployment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2605 | -- |
| 2606 | |
| 2607 | ALTER SEQUENCE core_sitedeployment_id_seq OWNED BY core_sitedeployment.id; |
| 2608 | |
| 2609 | |
| 2610 | -- |
| 2611 | -- Name: core_siteprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2612 | -- |
| 2613 | |
| 2614 | CREATE TABLE core_siteprivilege ( |
| 2615 | id integer NOT NULL, |
| 2616 | created timestamp with time zone NOT NULL, |
| 2617 | updated timestamp with time zone NOT NULL, |
| 2618 | enacted timestamp with time zone, |
| 2619 | policed timestamp with time zone, |
| 2620 | backend_register character varying(140), |
| 2621 | backend_status character varying(1024) NOT NULL, |
| 2622 | deleted boolean NOT NULL, |
| 2623 | write_protect boolean NOT NULL, |
| 2624 | lazy_blocked boolean NOT NULL, |
| 2625 | no_sync boolean NOT NULL, |
| 2626 | role_id integer NOT NULL, |
| 2627 | site_id integer NOT NULL, |
| 2628 | user_id integer NOT NULL |
| 2629 | ); |
| 2630 | |
| 2631 | |
| 2632 | ALTER TABLE public.core_siteprivilege OWNER TO postgres; |
| 2633 | |
| 2634 | -- |
| 2635 | -- Name: core_siteprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2636 | -- |
| 2637 | |
| 2638 | CREATE SEQUENCE core_siteprivilege_id_seq |
| 2639 | START WITH 1 |
| 2640 | INCREMENT BY 1 |
| 2641 | NO MINVALUE |
| 2642 | NO MAXVALUE |
| 2643 | CACHE 1; |
| 2644 | |
| 2645 | |
| 2646 | ALTER TABLE public.core_siteprivilege_id_seq OWNER TO postgres; |
| 2647 | |
| 2648 | -- |
| 2649 | -- Name: core_siteprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2650 | -- |
| 2651 | |
| 2652 | ALTER SEQUENCE core_siteprivilege_id_seq OWNED BY core_siteprivilege.id; |
| 2653 | |
| 2654 | |
| 2655 | -- |
| 2656 | -- Name: core_siterole; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2657 | -- |
| 2658 | |
| 2659 | CREATE TABLE core_siterole ( |
| 2660 | id integer NOT NULL, |
| 2661 | created timestamp with time zone NOT NULL, |
| 2662 | updated timestamp with time zone NOT NULL, |
| 2663 | enacted timestamp with time zone, |
| 2664 | policed timestamp with time zone, |
| 2665 | backend_register character varying(140), |
| 2666 | backend_status character varying(1024) NOT NULL, |
| 2667 | deleted boolean NOT NULL, |
| 2668 | write_protect boolean NOT NULL, |
| 2669 | lazy_blocked boolean NOT NULL, |
| 2670 | no_sync boolean NOT NULL, |
| 2671 | role character varying(30) NOT NULL |
| 2672 | ); |
| 2673 | |
| 2674 | |
| 2675 | ALTER TABLE public.core_siterole OWNER TO postgres; |
| 2676 | |
| 2677 | -- |
| 2678 | -- Name: core_siterole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2679 | -- |
| 2680 | |
| 2681 | CREATE SEQUENCE core_siterole_id_seq |
| 2682 | START WITH 1 |
| 2683 | INCREMENT BY 1 |
| 2684 | NO MINVALUE |
| 2685 | NO MAXVALUE |
| 2686 | CACHE 1; |
| 2687 | |
| 2688 | |
| 2689 | ALTER TABLE public.core_siterole_id_seq OWNER TO postgres; |
| 2690 | |
| 2691 | -- |
| 2692 | -- Name: core_siterole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2693 | -- |
| 2694 | |
| 2695 | ALTER SEQUENCE core_siterole_id_seq OWNED BY core_siterole.id; |
| 2696 | |
| 2697 | |
| 2698 | -- |
| 2699 | -- Name: core_slice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2700 | -- |
| 2701 | |
| 2702 | CREATE TABLE core_slice ( |
| 2703 | id integer NOT NULL, |
| 2704 | created timestamp with time zone NOT NULL, |
| 2705 | updated timestamp with time zone NOT NULL, |
| 2706 | enacted timestamp with time zone, |
| 2707 | policed timestamp with time zone, |
| 2708 | backend_register character varying(140), |
| 2709 | backend_status character varying(1024) NOT NULL, |
| 2710 | deleted boolean NOT NULL, |
| 2711 | write_protect boolean NOT NULL, |
| 2712 | lazy_blocked boolean NOT NULL, |
| 2713 | no_sync boolean NOT NULL, |
| 2714 | name character varying(80) NOT NULL, |
| 2715 | enabled boolean NOT NULL, |
| 2716 | omf_friendly boolean NOT NULL, |
| 2717 | description text NOT NULL, |
| 2718 | slice_url character varying(512) NOT NULL, |
| 2719 | max_instances integer NOT NULL, |
| 2720 | network character varying(256), |
| 2721 | exposed_ports character varying(256), |
| 2722 | mount_data_sets character varying(256), |
| 2723 | default_isolation character varying(30) NOT NULL, |
| 2724 | creator_id integer, |
| 2725 | default_flavor_id integer, |
| 2726 | default_image_id integer, |
| 2727 | service_id integer, |
| 2728 | "serviceClass_id" integer, |
| 2729 | site_id integer NOT NULL |
| 2730 | ); |
| 2731 | |
| 2732 | |
| 2733 | ALTER TABLE public.core_slice OWNER TO postgres; |
| 2734 | |
| 2735 | -- |
| 2736 | -- Name: core_slice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2737 | -- |
| 2738 | |
| 2739 | CREATE SEQUENCE core_slice_id_seq |
| 2740 | START WITH 1 |
| 2741 | INCREMENT BY 1 |
| 2742 | NO MINVALUE |
| 2743 | NO MAXVALUE |
| 2744 | CACHE 1; |
| 2745 | |
| 2746 | |
| 2747 | ALTER TABLE public.core_slice_id_seq OWNER TO postgres; |
| 2748 | |
| 2749 | -- |
| 2750 | -- Name: core_slice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2751 | -- |
| 2752 | |
| 2753 | ALTER SEQUENCE core_slice_id_seq OWNED BY core_slice.id; |
| 2754 | |
| 2755 | |
| 2756 | -- |
| 2757 | -- Name: core_slicecredential; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2758 | -- |
| 2759 | |
| 2760 | CREATE TABLE core_slicecredential ( |
| 2761 | id integer NOT NULL, |
| 2762 | created timestamp with time zone NOT NULL, |
| 2763 | updated timestamp with time zone NOT NULL, |
| 2764 | enacted timestamp with time zone, |
| 2765 | policed timestamp with time zone, |
| 2766 | backend_register character varying(140), |
| 2767 | backend_status character varying(1024) NOT NULL, |
| 2768 | deleted boolean NOT NULL, |
| 2769 | write_protect boolean NOT NULL, |
| 2770 | lazy_blocked boolean NOT NULL, |
| 2771 | no_sync boolean NOT NULL, |
| 2772 | name character varying(128) NOT NULL, |
| 2773 | key_id character varying(1024) NOT NULL, |
| 2774 | enc_value text NOT NULL, |
| 2775 | slice_id integer NOT NULL |
| 2776 | ); |
| 2777 | |
| 2778 | |
| 2779 | ALTER TABLE public.core_slicecredential OWNER TO postgres; |
| 2780 | |
| 2781 | -- |
| 2782 | -- Name: core_slicecredential_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2783 | -- |
| 2784 | |
| 2785 | CREATE SEQUENCE core_slicecredential_id_seq |
| 2786 | START WITH 1 |
| 2787 | INCREMENT BY 1 |
| 2788 | NO MINVALUE |
| 2789 | NO MAXVALUE |
| 2790 | CACHE 1; |
| 2791 | |
| 2792 | |
| 2793 | ALTER TABLE public.core_slicecredential_id_seq OWNER TO postgres; |
| 2794 | |
| 2795 | -- |
| 2796 | -- Name: core_slicecredential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2797 | -- |
| 2798 | |
| 2799 | ALTER SEQUENCE core_slicecredential_id_seq OWNED BY core_slicecredential.id; |
| 2800 | |
| 2801 | |
| 2802 | -- |
| 2803 | -- Name: core_sliceprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2804 | -- |
| 2805 | |
| 2806 | CREATE TABLE core_sliceprivilege ( |
| 2807 | id integer NOT NULL, |
| 2808 | created timestamp with time zone NOT NULL, |
| 2809 | updated timestamp with time zone NOT NULL, |
| 2810 | enacted timestamp with time zone, |
| 2811 | policed timestamp with time zone, |
| 2812 | backend_register character varying(140), |
| 2813 | backend_status character varying(1024) NOT NULL, |
| 2814 | deleted boolean NOT NULL, |
| 2815 | write_protect boolean NOT NULL, |
| 2816 | lazy_blocked boolean NOT NULL, |
| 2817 | no_sync boolean NOT NULL, |
| 2818 | role_id integer NOT NULL, |
| 2819 | slice_id integer NOT NULL, |
| 2820 | user_id integer NOT NULL |
| 2821 | ); |
| 2822 | |
| 2823 | |
| 2824 | ALTER TABLE public.core_sliceprivilege OWNER TO postgres; |
| 2825 | |
| 2826 | -- |
| 2827 | -- Name: core_sliceprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2828 | -- |
| 2829 | |
| 2830 | CREATE SEQUENCE core_sliceprivilege_id_seq |
| 2831 | START WITH 1 |
| 2832 | INCREMENT BY 1 |
| 2833 | NO MINVALUE |
| 2834 | NO MAXVALUE |
| 2835 | CACHE 1; |
| 2836 | |
| 2837 | |
| 2838 | ALTER TABLE public.core_sliceprivilege_id_seq OWNER TO postgres; |
| 2839 | |
| 2840 | -- |
| 2841 | -- Name: core_sliceprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2842 | -- |
| 2843 | |
| 2844 | ALTER SEQUENCE core_sliceprivilege_id_seq OWNED BY core_sliceprivilege.id; |
| 2845 | |
| 2846 | |
| 2847 | -- |
| 2848 | -- Name: core_slicerole; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2849 | -- |
| 2850 | |
| 2851 | CREATE TABLE core_slicerole ( |
| 2852 | id integer NOT NULL, |
| 2853 | created timestamp with time zone NOT NULL, |
| 2854 | updated timestamp with time zone NOT NULL, |
| 2855 | enacted timestamp with time zone, |
| 2856 | policed timestamp with time zone, |
| 2857 | backend_register character varying(140), |
| 2858 | backend_status character varying(1024) NOT NULL, |
| 2859 | deleted boolean NOT NULL, |
| 2860 | write_protect boolean NOT NULL, |
| 2861 | lazy_blocked boolean NOT NULL, |
| 2862 | no_sync boolean NOT NULL, |
| 2863 | role character varying(30) NOT NULL |
| 2864 | ); |
| 2865 | |
| 2866 | |
| 2867 | ALTER TABLE public.core_slicerole OWNER TO postgres; |
| 2868 | |
| 2869 | -- |
| 2870 | -- Name: core_slicerole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2871 | -- |
| 2872 | |
| 2873 | CREATE SEQUENCE core_slicerole_id_seq |
| 2874 | START WITH 1 |
| 2875 | INCREMENT BY 1 |
| 2876 | NO MINVALUE |
| 2877 | NO MAXVALUE |
| 2878 | CACHE 1; |
| 2879 | |
| 2880 | |
| 2881 | ALTER TABLE public.core_slicerole_id_seq OWNER TO postgres; |
| 2882 | |
| 2883 | -- |
| 2884 | -- Name: core_slicerole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2885 | -- |
| 2886 | |
| 2887 | ALTER SEQUENCE core_slicerole_id_seq OWNED BY core_slicerole.id; |
| 2888 | |
| 2889 | |
| 2890 | -- |
| 2891 | -- Name: core_slicetag; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2892 | -- |
| 2893 | |
| 2894 | CREATE TABLE core_slicetag ( |
| 2895 | id integer NOT NULL, |
| 2896 | created timestamp with time zone NOT NULL, |
| 2897 | updated timestamp with time zone NOT NULL, |
| 2898 | enacted timestamp with time zone, |
| 2899 | policed timestamp with time zone, |
| 2900 | backend_register character varying(140), |
| 2901 | backend_status character varying(1024) NOT NULL, |
| 2902 | deleted boolean NOT NULL, |
| 2903 | write_protect boolean NOT NULL, |
| 2904 | lazy_blocked boolean NOT NULL, |
| 2905 | no_sync boolean NOT NULL, |
| 2906 | name character varying(30) NOT NULL, |
| 2907 | value character varying(1024) NOT NULL, |
| 2908 | slice_id integer NOT NULL |
| 2909 | ); |
| 2910 | |
| 2911 | |
| 2912 | ALTER TABLE public.core_slicetag OWNER TO postgres; |
| 2913 | |
| 2914 | -- |
| 2915 | -- Name: core_slicetag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2916 | -- |
| 2917 | |
| 2918 | CREATE SEQUENCE core_slicetag_id_seq |
| 2919 | START WITH 1 |
| 2920 | INCREMENT BY 1 |
| 2921 | NO MINVALUE |
| 2922 | NO MAXVALUE |
| 2923 | CACHE 1; |
| 2924 | |
| 2925 | |
| 2926 | ALTER TABLE public.core_slicetag_id_seq OWNER TO postgres; |
| 2927 | |
| 2928 | -- |
| 2929 | -- Name: core_slicetag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2930 | -- |
| 2931 | |
| 2932 | ALTER SEQUENCE core_slicetag_id_seq OWNED BY core_slicetag.id; |
| 2933 | |
| 2934 | |
| 2935 | -- |
| 2936 | -- Name: core_tag; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2937 | -- |
| 2938 | |
| 2939 | CREATE TABLE core_tag ( |
| 2940 | id integer NOT NULL, |
| 2941 | created timestamp with time zone NOT NULL, |
| 2942 | updated timestamp with time zone NOT NULL, |
| 2943 | enacted timestamp with time zone, |
| 2944 | policed timestamp with time zone, |
| 2945 | backend_register character varying(140), |
| 2946 | backend_status character varying(1024) NOT NULL, |
| 2947 | deleted boolean NOT NULL, |
| 2948 | write_protect boolean NOT NULL, |
| 2949 | lazy_blocked boolean NOT NULL, |
| 2950 | no_sync boolean NOT NULL, |
| 2951 | name character varying(128) NOT NULL, |
| 2952 | value character varying(1024) NOT NULL, |
| 2953 | object_id integer NOT NULL, |
| 2954 | content_type_id integer NOT NULL, |
| 2955 | service_id integer NOT NULL, |
| 2956 | CONSTRAINT core_tag_object_id_check CHECK ((object_id >= 0)) |
| 2957 | ); |
| 2958 | |
| 2959 | |
| 2960 | ALTER TABLE public.core_tag OWNER TO postgres; |
| 2961 | |
| 2962 | -- |
| 2963 | -- Name: core_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 2964 | -- |
| 2965 | |
| 2966 | CREATE SEQUENCE core_tag_id_seq |
| 2967 | START WITH 1 |
| 2968 | INCREMENT BY 1 |
| 2969 | NO MINVALUE |
| 2970 | NO MAXVALUE |
| 2971 | CACHE 1; |
| 2972 | |
| 2973 | |
| 2974 | ALTER TABLE public.core_tag_id_seq OWNER TO postgres; |
| 2975 | |
| 2976 | -- |
| 2977 | -- Name: core_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 2978 | -- |
| 2979 | |
| 2980 | ALTER SEQUENCE core_tag_id_seq OWNED BY core_tag.id; |
| 2981 | |
| 2982 | |
| 2983 | -- |
| 2984 | -- Name: core_tenant; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 2985 | -- |
| 2986 | |
| 2987 | CREATE TABLE core_tenant ( |
| 2988 | id integer NOT NULL, |
| 2989 | created timestamp with time zone NOT NULL, |
| 2990 | updated timestamp with time zone NOT NULL, |
| 2991 | enacted timestamp with time zone, |
| 2992 | policed timestamp with time zone, |
| 2993 | backend_register character varying(140), |
| 2994 | backend_status character varying(1024) NOT NULL, |
| 2995 | deleted boolean NOT NULL, |
| 2996 | write_protect boolean NOT NULL, |
| 2997 | lazy_blocked boolean NOT NULL, |
| 2998 | no_sync boolean NOT NULL, |
| 2999 | kind character varying(30) NOT NULL, |
| 3000 | service_specific_id character varying(30), |
| 3001 | service_specific_attribute text, |
| 3002 | connect_method character varying(30) NOT NULL, |
| 3003 | provider_service_id integer NOT NULL, |
| 3004 | subscriber_root_id integer, |
| 3005 | subscriber_service_id integer, |
| 3006 | subscriber_tenant_id integer, |
| 3007 | subscriber_user_id integer |
| 3008 | ); |
| 3009 | |
| 3010 | |
| 3011 | ALTER TABLE public.core_tenant OWNER TO postgres; |
| 3012 | |
| 3013 | -- |
| 3014 | -- Name: core_tenant_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3015 | -- |
| 3016 | |
| 3017 | CREATE SEQUENCE core_tenant_id_seq |
| 3018 | START WITH 1 |
| 3019 | INCREMENT BY 1 |
| 3020 | NO MINVALUE |
| 3021 | NO MAXVALUE |
| 3022 | CACHE 1; |
| 3023 | |
| 3024 | |
| 3025 | ALTER TABLE public.core_tenant_id_seq OWNER TO postgres; |
| 3026 | |
| 3027 | -- |
| 3028 | -- Name: core_tenant_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3029 | -- |
| 3030 | |
| 3031 | ALTER SEQUENCE core_tenant_id_seq OWNED BY core_tenant.id; |
| 3032 | |
| 3033 | |
| 3034 | -- |
| 3035 | -- Name: core_tenantattribute; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3036 | -- |
| 3037 | |
| 3038 | CREATE TABLE core_tenantattribute ( |
| 3039 | id integer NOT NULL, |
| 3040 | created timestamp with time zone NOT NULL, |
| 3041 | updated timestamp with time zone NOT NULL, |
| 3042 | enacted timestamp with time zone, |
| 3043 | policed timestamp with time zone, |
| 3044 | backend_register character varying(140), |
| 3045 | backend_status character varying(1024) NOT NULL, |
| 3046 | deleted boolean NOT NULL, |
| 3047 | write_protect boolean NOT NULL, |
| 3048 | lazy_blocked boolean NOT NULL, |
| 3049 | no_sync boolean NOT NULL, |
| 3050 | name character varying(128) NOT NULL, |
| 3051 | value text NOT NULL, |
| 3052 | tenant_id integer NOT NULL |
| 3053 | ); |
| 3054 | |
| 3055 | |
| 3056 | ALTER TABLE public.core_tenantattribute OWNER TO postgres; |
| 3057 | |
| 3058 | -- |
| 3059 | -- Name: core_tenantattribute_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3060 | -- |
| 3061 | |
| 3062 | CREATE SEQUENCE core_tenantattribute_id_seq |
| 3063 | START WITH 1 |
| 3064 | INCREMENT BY 1 |
| 3065 | NO MINVALUE |
| 3066 | NO MAXVALUE |
| 3067 | CACHE 1; |
| 3068 | |
| 3069 | |
| 3070 | ALTER TABLE public.core_tenantattribute_id_seq OWNER TO postgres; |
| 3071 | |
| 3072 | -- |
| 3073 | -- Name: core_tenantattribute_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3074 | -- |
| 3075 | |
| 3076 | ALTER SEQUENCE core_tenantattribute_id_seq OWNED BY core_tenantattribute.id; |
| 3077 | |
| 3078 | |
| 3079 | -- |
| 3080 | -- Name: core_tenantroot; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3081 | -- |
| 3082 | |
| 3083 | CREATE TABLE core_tenantroot ( |
| 3084 | id integer NOT NULL, |
| 3085 | created timestamp with time zone NOT NULL, |
| 3086 | updated timestamp with time zone NOT NULL, |
| 3087 | enacted timestamp with time zone, |
| 3088 | policed timestamp with time zone, |
| 3089 | backend_register character varying(140), |
| 3090 | backend_status character varying(1024) NOT NULL, |
| 3091 | deleted boolean NOT NULL, |
| 3092 | write_protect boolean NOT NULL, |
| 3093 | lazy_blocked boolean NOT NULL, |
| 3094 | no_sync boolean NOT NULL, |
| 3095 | kind character varying(30) NOT NULL, |
| 3096 | name character varying(255), |
| 3097 | service_specific_attribute text, |
| 3098 | service_specific_id character varying(30) |
| 3099 | ); |
| 3100 | |
| 3101 | |
| 3102 | ALTER TABLE public.core_tenantroot OWNER TO postgres; |
| 3103 | |
| 3104 | -- |
| 3105 | -- Name: core_tenantroot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3106 | -- |
| 3107 | |
| 3108 | CREATE SEQUENCE core_tenantroot_id_seq |
| 3109 | START WITH 1 |
| 3110 | INCREMENT BY 1 |
| 3111 | NO MINVALUE |
| 3112 | NO MAXVALUE |
| 3113 | CACHE 1; |
| 3114 | |
| 3115 | |
| 3116 | ALTER TABLE public.core_tenantroot_id_seq OWNER TO postgres; |
| 3117 | |
| 3118 | -- |
| 3119 | -- Name: core_tenantroot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3120 | -- |
| 3121 | |
| 3122 | ALTER SEQUENCE core_tenantroot_id_seq OWNED BY core_tenantroot.id; |
| 3123 | |
| 3124 | |
| 3125 | -- |
| 3126 | -- Name: core_tenantrootprivilege; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3127 | -- |
| 3128 | |
| 3129 | CREATE TABLE core_tenantrootprivilege ( |
| 3130 | id integer NOT NULL, |
| 3131 | created timestamp with time zone NOT NULL, |
| 3132 | updated timestamp with time zone NOT NULL, |
| 3133 | enacted timestamp with time zone, |
| 3134 | policed timestamp with time zone, |
| 3135 | backend_register character varying(140), |
| 3136 | backend_status character varying(1024) NOT NULL, |
| 3137 | deleted boolean NOT NULL, |
| 3138 | write_protect boolean NOT NULL, |
| 3139 | lazy_blocked boolean NOT NULL, |
| 3140 | no_sync boolean NOT NULL, |
| 3141 | role_id integer NOT NULL, |
| 3142 | tenant_root_id integer NOT NULL, |
| 3143 | user_id integer NOT NULL |
| 3144 | ); |
| 3145 | |
| 3146 | |
| 3147 | ALTER TABLE public.core_tenantrootprivilege OWNER TO postgres; |
| 3148 | |
| 3149 | -- |
| 3150 | -- Name: core_tenantrootprivilege_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3151 | -- |
| 3152 | |
| 3153 | CREATE SEQUENCE core_tenantrootprivilege_id_seq |
| 3154 | START WITH 1 |
| 3155 | INCREMENT BY 1 |
| 3156 | NO MINVALUE |
| 3157 | NO MAXVALUE |
| 3158 | CACHE 1; |
| 3159 | |
| 3160 | |
| 3161 | ALTER TABLE public.core_tenantrootprivilege_id_seq OWNER TO postgres; |
| 3162 | |
| 3163 | -- |
| 3164 | -- Name: core_tenantrootprivilege_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3165 | -- |
| 3166 | |
| 3167 | ALTER SEQUENCE core_tenantrootprivilege_id_seq OWNED BY core_tenantrootprivilege.id; |
| 3168 | |
| 3169 | |
| 3170 | -- |
| 3171 | -- Name: core_tenantrootrole; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3172 | -- |
| 3173 | |
| 3174 | CREATE TABLE core_tenantrootrole ( |
| 3175 | id integer NOT NULL, |
| 3176 | created timestamp with time zone NOT NULL, |
| 3177 | updated timestamp with time zone NOT NULL, |
| 3178 | enacted timestamp with time zone, |
| 3179 | policed timestamp with time zone, |
| 3180 | backend_register character varying(140), |
| 3181 | backend_status character varying(1024) NOT NULL, |
| 3182 | deleted boolean NOT NULL, |
| 3183 | write_protect boolean NOT NULL, |
| 3184 | lazy_blocked boolean NOT NULL, |
| 3185 | no_sync boolean NOT NULL, |
| 3186 | role character varying(30) NOT NULL |
| 3187 | ); |
| 3188 | |
| 3189 | |
| 3190 | ALTER TABLE public.core_tenantrootrole OWNER TO postgres; |
| 3191 | |
| 3192 | -- |
| 3193 | -- Name: core_tenantrootrole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3194 | -- |
| 3195 | |
| 3196 | CREATE SEQUENCE core_tenantrootrole_id_seq |
| 3197 | START WITH 1 |
| 3198 | INCREMENT BY 1 |
| 3199 | NO MINVALUE |
| 3200 | NO MAXVALUE |
| 3201 | CACHE 1; |
| 3202 | |
| 3203 | |
| 3204 | ALTER TABLE public.core_tenantrootrole_id_seq OWNER TO postgres; |
| 3205 | |
| 3206 | -- |
| 3207 | -- Name: core_tenantrootrole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3208 | -- |
| 3209 | |
| 3210 | ALTER SEQUENCE core_tenantrootrole_id_seq OWNED BY core_tenantrootrole.id; |
| 3211 | |
| 3212 | |
| 3213 | -- |
| 3214 | -- Name: core_usableobject; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3215 | -- |
| 3216 | |
| 3217 | CREATE TABLE core_usableobject ( |
| 3218 | id integer NOT NULL, |
| 3219 | created timestamp with time zone NOT NULL, |
| 3220 | updated timestamp with time zone NOT NULL, |
| 3221 | enacted timestamp with time zone, |
| 3222 | policed timestamp with time zone, |
| 3223 | backend_register character varying(140), |
| 3224 | backend_status character varying(1024) NOT NULL, |
| 3225 | deleted boolean NOT NULL, |
| 3226 | write_protect boolean NOT NULL, |
| 3227 | lazy_blocked boolean NOT NULL, |
| 3228 | no_sync boolean NOT NULL, |
| 3229 | name character varying(1024) NOT NULL |
| 3230 | ); |
| 3231 | |
| 3232 | |
| 3233 | ALTER TABLE public.core_usableobject OWNER TO postgres; |
| 3234 | |
| 3235 | -- |
| 3236 | -- Name: core_usableobject_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3237 | -- |
| 3238 | |
| 3239 | CREATE SEQUENCE core_usableobject_id_seq |
| 3240 | START WITH 1 |
| 3241 | INCREMENT BY 1 |
| 3242 | NO MINVALUE |
| 3243 | NO MAXVALUE |
| 3244 | CACHE 1; |
| 3245 | |
| 3246 | |
| 3247 | ALTER TABLE public.core_usableobject_id_seq OWNER TO postgres; |
| 3248 | |
| 3249 | -- |
| 3250 | -- Name: core_usableobject_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3251 | -- |
| 3252 | |
| 3253 | ALTER SEQUENCE core_usableobject_id_seq OWNED BY core_usableobject.id; |
| 3254 | |
| 3255 | |
| 3256 | -- |
| 3257 | -- Name: core_user; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3258 | -- |
| 3259 | |
| 3260 | CREATE TABLE core_user ( |
| 3261 | id integer NOT NULL, |
| 3262 | password character varying(128) NOT NULL, |
| 3263 | last_login timestamp with time zone NOT NULL, |
| 3264 | email character varying(255) NOT NULL, |
| 3265 | username character varying(255) NOT NULL, |
| 3266 | firstname character varying(200) NOT NULL, |
| 3267 | lastname character varying(200) NOT NULL, |
| 3268 | phone character varying(100), |
| 3269 | user_url character varying(200), |
| 3270 | public_key text, |
| 3271 | is_active boolean NOT NULL, |
| 3272 | is_admin boolean NOT NULL, |
| 3273 | is_staff boolean NOT NULL, |
| 3274 | is_readonly boolean NOT NULL, |
| 3275 | is_registering boolean NOT NULL, |
| 3276 | is_appuser boolean NOT NULL, |
| 3277 | login_page character varying(200), |
| 3278 | created timestamp with time zone NOT NULL, |
| 3279 | updated timestamp with time zone NOT NULL, |
| 3280 | enacted timestamp with time zone, |
| 3281 | policed timestamp with time zone, |
| 3282 | backend_status character varying(1024) NOT NULL, |
| 3283 | deleted boolean NOT NULL, |
| 3284 | write_protect boolean NOT NULL, |
| 3285 | timezone character varying(100) NOT NULL, |
| 3286 | site_id integer NOT NULL |
| 3287 | ); |
| 3288 | |
| 3289 | |
| 3290 | ALTER TABLE public.core_user OWNER TO postgres; |
| 3291 | |
| 3292 | -- |
| 3293 | -- Name: core_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3294 | -- |
| 3295 | |
| 3296 | CREATE SEQUENCE core_user_id_seq |
| 3297 | START WITH 1 |
| 3298 | INCREMENT BY 1 |
| 3299 | NO MINVALUE |
| 3300 | NO MAXVALUE |
| 3301 | CACHE 1; |
| 3302 | |
| 3303 | |
| 3304 | ALTER TABLE public.core_user_id_seq OWNER TO postgres; |
| 3305 | |
| 3306 | -- |
| 3307 | -- Name: core_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3308 | -- |
| 3309 | |
| 3310 | ALTER SEQUENCE core_user_id_seq OWNED BY core_user.id; |
| 3311 | |
| 3312 | |
| 3313 | -- |
| 3314 | -- Name: core_usercredential; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3315 | -- |
| 3316 | |
| 3317 | CREATE TABLE core_usercredential ( |
| 3318 | id integer NOT NULL, |
| 3319 | created timestamp with time zone NOT NULL, |
| 3320 | updated timestamp with time zone NOT NULL, |
| 3321 | enacted timestamp with time zone, |
| 3322 | policed timestamp with time zone, |
| 3323 | backend_register character varying(140), |
| 3324 | backend_status character varying(1024) NOT NULL, |
| 3325 | deleted boolean NOT NULL, |
| 3326 | write_protect boolean NOT NULL, |
| 3327 | lazy_blocked boolean NOT NULL, |
| 3328 | no_sync boolean NOT NULL, |
| 3329 | name character varying(128) NOT NULL, |
| 3330 | key_id character varying(1024) NOT NULL, |
| 3331 | enc_value text NOT NULL, |
| 3332 | user_id integer NOT NULL |
| 3333 | ); |
| 3334 | |
| 3335 | |
| 3336 | ALTER TABLE public.core_usercredential OWNER TO postgres; |
| 3337 | |
| 3338 | -- |
| 3339 | -- Name: core_usercredential_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3340 | -- |
| 3341 | |
| 3342 | CREATE SEQUENCE core_usercredential_id_seq |
| 3343 | START WITH 1 |
| 3344 | INCREMENT BY 1 |
| 3345 | NO MINVALUE |
| 3346 | NO MAXVALUE |
| 3347 | CACHE 1; |
| 3348 | |
| 3349 | |
| 3350 | ALTER TABLE public.core_usercredential_id_seq OWNER TO postgres; |
| 3351 | |
| 3352 | -- |
| 3353 | -- Name: core_usercredential_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3354 | -- |
| 3355 | |
| 3356 | ALTER SEQUENCE core_usercredential_id_seq OWNED BY core_usercredential.id; |
| 3357 | |
| 3358 | |
| 3359 | -- |
| 3360 | -- Name: core_userdashboardview; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3361 | -- |
| 3362 | |
| 3363 | CREATE TABLE core_userdashboardview ( |
| 3364 | id integer NOT NULL, |
| 3365 | created timestamp with time zone NOT NULL, |
| 3366 | updated timestamp with time zone NOT NULL, |
| 3367 | enacted timestamp with time zone, |
| 3368 | policed timestamp with time zone, |
| 3369 | backend_register character varying(140), |
| 3370 | backend_status character varying(1024) NOT NULL, |
| 3371 | deleted boolean NOT NULL, |
| 3372 | write_protect boolean NOT NULL, |
| 3373 | lazy_blocked boolean NOT NULL, |
| 3374 | no_sync boolean NOT NULL, |
| 3375 | "order" integer NOT NULL, |
| 3376 | "dashboardView_id" integer NOT NULL, |
| 3377 | user_id integer NOT NULL |
| 3378 | ); |
| 3379 | |
| 3380 | |
| 3381 | ALTER TABLE public.core_userdashboardview OWNER TO postgres; |
| 3382 | |
| 3383 | -- |
| 3384 | -- Name: core_userdashboardview_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3385 | -- |
| 3386 | |
| 3387 | CREATE SEQUENCE core_userdashboardview_id_seq |
| 3388 | START WITH 1 |
| 3389 | INCREMENT BY 1 |
| 3390 | NO MINVALUE |
| 3391 | NO MAXVALUE |
| 3392 | CACHE 1; |
| 3393 | |
| 3394 | |
| 3395 | ALTER TABLE public.core_userdashboardview_id_seq OWNER TO postgres; |
| 3396 | |
| 3397 | -- |
| 3398 | -- Name: core_userdashboardview_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3399 | -- |
| 3400 | |
| 3401 | ALTER SEQUENCE core_userdashboardview_id_seq OWNED BY core_userdashboardview.id; |
| 3402 | |
| 3403 | |
| 3404 | -- |
| 3405 | -- Name: django_admin_log; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3406 | -- |
| 3407 | |
| 3408 | CREATE TABLE django_admin_log ( |
| 3409 | id integer NOT NULL, |
| 3410 | action_time timestamp with time zone NOT NULL, |
| 3411 | object_id text, |
| 3412 | object_repr character varying(200) NOT NULL, |
| 3413 | action_flag smallint NOT NULL, |
| 3414 | change_message text NOT NULL, |
| 3415 | content_type_id integer, |
| 3416 | user_id integer NOT NULL, |
| 3417 | CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) |
| 3418 | ); |
| 3419 | |
| 3420 | |
| 3421 | ALTER TABLE public.django_admin_log OWNER TO postgres; |
| 3422 | |
| 3423 | -- |
| 3424 | -- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3425 | -- |
| 3426 | |
| 3427 | CREATE SEQUENCE django_admin_log_id_seq |
| 3428 | START WITH 1 |
| 3429 | INCREMENT BY 1 |
| 3430 | NO MINVALUE |
| 3431 | NO MAXVALUE |
| 3432 | CACHE 1; |
| 3433 | |
| 3434 | |
| 3435 | ALTER TABLE public.django_admin_log_id_seq OWNER TO postgres; |
| 3436 | |
| 3437 | -- |
| 3438 | -- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3439 | -- |
| 3440 | |
| 3441 | ALTER SEQUENCE django_admin_log_id_seq OWNED BY django_admin_log.id; |
| 3442 | |
| 3443 | |
| 3444 | -- |
| 3445 | -- Name: django_content_type; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3446 | -- |
| 3447 | |
| 3448 | CREATE TABLE django_content_type ( |
| 3449 | id integer NOT NULL, |
| 3450 | name character varying(100) NOT NULL, |
| 3451 | app_label character varying(100) NOT NULL, |
| 3452 | model character varying(100) NOT NULL |
| 3453 | ); |
| 3454 | |
| 3455 | |
| 3456 | ALTER TABLE public.django_content_type OWNER TO postgres; |
| 3457 | |
| 3458 | -- |
| 3459 | -- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3460 | -- |
| 3461 | |
| 3462 | CREATE SEQUENCE django_content_type_id_seq |
| 3463 | START WITH 1 |
| 3464 | INCREMENT BY 1 |
| 3465 | NO MINVALUE |
| 3466 | NO MAXVALUE |
| 3467 | CACHE 1; |
| 3468 | |
| 3469 | |
| 3470 | ALTER TABLE public.django_content_type_id_seq OWNER TO postgres; |
| 3471 | |
| 3472 | -- |
| 3473 | -- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3474 | -- |
| 3475 | |
| 3476 | ALTER SEQUENCE django_content_type_id_seq OWNED BY django_content_type.id; |
| 3477 | |
| 3478 | |
| 3479 | -- |
| 3480 | -- Name: django_migrations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3481 | -- |
| 3482 | |
| 3483 | CREATE TABLE django_migrations ( |
| 3484 | id integer NOT NULL, |
| 3485 | app character varying(255) NOT NULL, |
| 3486 | name character varying(255) NOT NULL, |
| 3487 | applied timestamp with time zone NOT NULL |
| 3488 | ); |
| 3489 | |
| 3490 | |
| 3491 | ALTER TABLE public.django_migrations OWNER TO postgres; |
| 3492 | |
| 3493 | -- |
| 3494 | -- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3495 | -- |
| 3496 | |
| 3497 | CREATE SEQUENCE django_migrations_id_seq |
| 3498 | START WITH 1 |
| 3499 | INCREMENT BY 1 |
| 3500 | NO MINVALUE |
| 3501 | NO MAXVALUE |
| 3502 | CACHE 1; |
| 3503 | |
| 3504 | |
| 3505 | ALTER TABLE public.django_migrations_id_seq OWNER TO postgres; |
| 3506 | |
| 3507 | -- |
| 3508 | -- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3509 | -- |
| 3510 | |
| 3511 | ALTER SEQUENCE django_migrations_id_seq OWNED BY django_migrations.id; |
| 3512 | |
| 3513 | |
| 3514 | -- |
| 3515 | -- Name: django_session; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3516 | -- |
| 3517 | |
| 3518 | CREATE TABLE django_session ( |
| 3519 | session_key character varying(40) NOT NULL, |
| 3520 | session_data text NOT NULL, |
| 3521 | expire_date timestamp with time zone NOT NULL |
| 3522 | ); |
| 3523 | |
| 3524 | |
| 3525 | ALTER TABLE public.django_session OWNER TO postgres; |
| 3526 | |
| 3527 | -- |
| 3528 | -- Name: hpc_accessmap; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3529 | -- |
| 3530 | |
| 3531 | CREATE TABLE hpc_accessmap ( |
| 3532 | id integer NOT NULL, |
| 3533 | created timestamp with time zone NOT NULL, |
| 3534 | updated timestamp with time zone NOT NULL, |
| 3535 | enacted timestamp with time zone, |
| 3536 | policed timestamp with time zone, |
| 3537 | backend_register character varying(140), |
| 3538 | backend_status character varying(1024) NOT NULL, |
| 3539 | deleted boolean NOT NULL, |
| 3540 | write_protect boolean NOT NULL, |
| 3541 | lazy_blocked boolean NOT NULL, |
| 3542 | no_sync boolean NOT NULL, |
| 3543 | name character varying(64) NOT NULL, |
| 3544 | description text, |
| 3545 | map character varying(100) NOT NULL, |
| 3546 | "contentProvider_id" integer NOT NULL |
| 3547 | ); |
| 3548 | |
| 3549 | |
| 3550 | ALTER TABLE public.hpc_accessmap OWNER TO postgres; |
| 3551 | |
| 3552 | -- |
| 3553 | -- Name: hpc_accessmap_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3554 | -- |
| 3555 | |
| 3556 | CREATE SEQUENCE hpc_accessmap_id_seq |
| 3557 | START WITH 1 |
| 3558 | INCREMENT BY 1 |
| 3559 | NO MINVALUE |
| 3560 | NO MAXVALUE |
| 3561 | CACHE 1; |
| 3562 | |
| 3563 | |
| 3564 | ALTER TABLE public.hpc_accessmap_id_seq OWNER TO postgres; |
| 3565 | |
| 3566 | -- |
| 3567 | -- Name: hpc_accessmap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3568 | -- |
| 3569 | |
| 3570 | ALTER SEQUENCE hpc_accessmap_id_seq OWNED BY hpc_accessmap.id; |
| 3571 | |
| 3572 | |
| 3573 | -- |
| 3574 | -- Name: hpc_cdnprefix; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3575 | -- |
| 3576 | |
| 3577 | CREATE TABLE hpc_cdnprefix ( |
| 3578 | id integer NOT NULL, |
| 3579 | created timestamp with time zone NOT NULL, |
| 3580 | updated timestamp with time zone NOT NULL, |
| 3581 | enacted timestamp with time zone, |
| 3582 | policed timestamp with time zone, |
| 3583 | backend_register character varying(140), |
| 3584 | backend_status character varying(1024) NOT NULL, |
| 3585 | deleted boolean NOT NULL, |
| 3586 | write_protect boolean NOT NULL, |
| 3587 | lazy_blocked boolean NOT NULL, |
| 3588 | no_sync boolean NOT NULL, |
| 3589 | cdn_prefix_id integer, |
| 3590 | prefix character varying(200) NOT NULL, |
| 3591 | description text, |
| 3592 | enabled boolean NOT NULL, |
| 3593 | "contentProvider_id" integer NOT NULL, |
| 3594 | "defaultOriginServer_id" integer |
| 3595 | ); |
| 3596 | |
| 3597 | |
| 3598 | ALTER TABLE public.hpc_cdnprefix OWNER TO postgres; |
| 3599 | |
| 3600 | -- |
| 3601 | -- Name: hpc_cdnprefix_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3602 | -- |
| 3603 | |
| 3604 | CREATE SEQUENCE hpc_cdnprefix_id_seq |
| 3605 | START WITH 1 |
| 3606 | INCREMENT BY 1 |
| 3607 | NO MINVALUE |
| 3608 | NO MAXVALUE |
| 3609 | CACHE 1; |
| 3610 | |
| 3611 | |
| 3612 | ALTER TABLE public.hpc_cdnprefix_id_seq OWNER TO postgres; |
| 3613 | |
| 3614 | -- |
| 3615 | -- Name: hpc_cdnprefix_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3616 | -- |
| 3617 | |
| 3618 | ALTER SEQUENCE hpc_cdnprefix_id_seq OWNED BY hpc_cdnprefix.id; |
| 3619 | |
| 3620 | |
| 3621 | -- |
| 3622 | -- Name: hpc_contentprovider; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3623 | -- |
| 3624 | |
| 3625 | CREATE TABLE hpc_contentprovider ( |
| 3626 | id integer NOT NULL, |
| 3627 | created timestamp with time zone NOT NULL, |
| 3628 | updated timestamp with time zone NOT NULL, |
| 3629 | enacted timestamp with time zone, |
| 3630 | policed timestamp with time zone, |
| 3631 | backend_register character varying(140), |
| 3632 | backend_status character varying(1024) NOT NULL, |
| 3633 | deleted boolean NOT NULL, |
| 3634 | write_protect boolean NOT NULL, |
| 3635 | lazy_blocked boolean NOT NULL, |
| 3636 | no_sync boolean NOT NULL, |
| 3637 | content_provider_id integer, |
| 3638 | name character varying(254) NOT NULL, |
| 3639 | enabled boolean NOT NULL, |
| 3640 | description text, |
| 3641 | "serviceProvider_id" integer NOT NULL |
| 3642 | ); |
| 3643 | |
| 3644 | |
| 3645 | ALTER TABLE public.hpc_contentprovider OWNER TO postgres; |
| 3646 | |
| 3647 | -- |
| 3648 | -- Name: hpc_contentprovider_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3649 | -- |
| 3650 | |
| 3651 | CREATE SEQUENCE hpc_contentprovider_id_seq |
| 3652 | START WITH 1 |
| 3653 | INCREMENT BY 1 |
| 3654 | NO MINVALUE |
| 3655 | NO MAXVALUE |
| 3656 | CACHE 1; |
| 3657 | |
| 3658 | |
| 3659 | ALTER TABLE public.hpc_contentprovider_id_seq OWNER TO postgres; |
| 3660 | |
| 3661 | -- |
| 3662 | -- Name: hpc_contentprovider_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3663 | -- |
| 3664 | |
| 3665 | ALTER SEQUENCE hpc_contentprovider_id_seq OWNED BY hpc_contentprovider.id; |
| 3666 | |
| 3667 | |
| 3668 | -- |
| 3669 | -- Name: hpc_contentprovider_users; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3670 | -- |
| 3671 | |
| 3672 | CREATE TABLE hpc_contentprovider_users ( |
| 3673 | id integer NOT NULL, |
| 3674 | contentprovider_id integer NOT NULL, |
| 3675 | user_id integer NOT NULL |
| 3676 | ); |
| 3677 | |
| 3678 | |
| 3679 | ALTER TABLE public.hpc_contentprovider_users OWNER TO postgres; |
| 3680 | |
| 3681 | -- |
| 3682 | -- Name: hpc_contentprovider_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3683 | -- |
| 3684 | |
| 3685 | CREATE SEQUENCE hpc_contentprovider_users_id_seq |
| 3686 | START WITH 1 |
| 3687 | INCREMENT BY 1 |
| 3688 | NO MINVALUE |
| 3689 | NO MAXVALUE |
| 3690 | CACHE 1; |
| 3691 | |
| 3692 | |
| 3693 | ALTER TABLE public.hpc_contentprovider_users_id_seq OWNER TO postgres; |
| 3694 | |
| 3695 | -- |
| 3696 | -- Name: hpc_contentprovider_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3697 | -- |
| 3698 | |
| 3699 | ALTER SEQUENCE hpc_contentprovider_users_id_seq OWNED BY hpc_contentprovider_users.id; |
| 3700 | |
| 3701 | |
| 3702 | -- |
| 3703 | -- Name: hpc_hpchealthcheck; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3704 | -- |
| 3705 | |
| 3706 | CREATE TABLE hpc_hpchealthcheck ( |
| 3707 | id integer NOT NULL, |
| 3708 | created timestamp with time zone NOT NULL, |
| 3709 | updated timestamp with time zone NOT NULL, |
| 3710 | enacted timestamp with time zone, |
| 3711 | policed timestamp with time zone, |
| 3712 | backend_register character varying(140), |
| 3713 | backend_status character varying(1024) NOT NULL, |
| 3714 | deleted boolean NOT NULL, |
| 3715 | write_protect boolean NOT NULL, |
| 3716 | lazy_blocked boolean NOT NULL, |
| 3717 | no_sync boolean NOT NULL, |
| 3718 | kind character varying(30) NOT NULL, |
| 3719 | resource_name character varying(1024) NOT NULL, |
| 3720 | result_contains character varying(1024), |
| 3721 | result_min_size integer, |
| 3722 | result_max_size integer, |
| 3723 | "hpcService_id" integer |
| 3724 | ); |
| 3725 | |
| 3726 | |
| 3727 | ALTER TABLE public.hpc_hpchealthcheck OWNER TO postgres; |
| 3728 | |
| 3729 | -- |
| 3730 | -- Name: hpc_hpchealthcheck_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3731 | -- |
| 3732 | |
| 3733 | CREATE SEQUENCE hpc_hpchealthcheck_id_seq |
| 3734 | START WITH 1 |
| 3735 | INCREMENT BY 1 |
| 3736 | NO MINVALUE |
| 3737 | NO MAXVALUE |
| 3738 | CACHE 1; |
| 3739 | |
| 3740 | |
| 3741 | ALTER TABLE public.hpc_hpchealthcheck_id_seq OWNER TO postgres; |
| 3742 | |
| 3743 | -- |
| 3744 | -- Name: hpc_hpchealthcheck_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3745 | -- |
| 3746 | |
| 3747 | ALTER SEQUENCE hpc_hpchealthcheck_id_seq OWNED BY hpc_hpchealthcheck.id; |
| 3748 | |
| 3749 | |
| 3750 | -- |
| 3751 | -- Name: hpc_hpcservice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3752 | -- |
| 3753 | |
| 3754 | CREATE TABLE hpc_hpcservice ( |
| 3755 | service_ptr_id integer NOT NULL, |
| 3756 | cmi_hostname character varying(254), |
| 3757 | hpc_port80 boolean NOT NULL, |
| 3758 | watcher_hpc_network character varying(254), |
| 3759 | watcher_dnsdemux_network character varying(254), |
| 3760 | watcher_dnsredir_network character varying(254) |
| 3761 | ); |
| 3762 | |
| 3763 | |
| 3764 | ALTER TABLE public.hpc_hpcservice OWNER TO postgres; |
| 3765 | |
| 3766 | -- |
| 3767 | -- Name: hpc_originserver; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3768 | -- |
| 3769 | |
| 3770 | CREATE TABLE hpc_originserver ( |
| 3771 | id integer NOT NULL, |
| 3772 | created timestamp with time zone NOT NULL, |
| 3773 | updated timestamp with time zone NOT NULL, |
| 3774 | enacted timestamp with time zone, |
| 3775 | policed timestamp with time zone, |
| 3776 | backend_register character varying(140), |
| 3777 | backend_status character varying(1024) NOT NULL, |
| 3778 | deleted boolean NOT NULL, |
| 3779 | write_protect boolean NOT NULL, |
| 3780 | lazy_blocked boolean NOT NULL, |
| 3781 | no_sync boolean NOT NULL, |
| 3782 | origin_server_id integer, |
| 3783 | url character varying(1024) NOT NULL, |
| 3784 | authenticated boolean NOT NULL, |
| 3785 | enabled boolean NOT NULL, |
| 3786 | protocol character varying(12) NOT NULL, |
| 3787 | redirects boolean NOT NULL, |
| 3788 | description text, |
| 3789 | "contentProvider_id" integer NOT NULL |
| 3790 | ); |
| 3791 | |
| 3792 | |
| 3793 | ALTER TABLE public.hpc_originserver OWNER TO postgres; |
| 3794 | |
| 3795 | -- |
| 3796 | -- Name: hpc_originserver_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3797 | -- |
| 3798 | |
| 3799 | CREATE SEQUENCE hpc_originserver_id_seq |
| 3800 | START WITH 1 |
| 3801 | INCREMENT BY 1 |
| 3802 | NO MINVALUE |
| 3803 | NO MAXVALUE |
| 3804 | CACHE 1; |
| 3805 | |
| 3806 | |
| 3807 | ALTER TABLE public.hpc_originserver_id_seq OWNER TO postgres; |
| 3808 | |
| 3809 | -- |
| 3810 | -- Name: hpc_originserver_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3811 | -- |
| 3812 | |
| 3813 | ALTER SEQUENCE hpc_originserver_id_seq OWNED BY hpc_originserver.id; |
| 3814 | |
| 3815 | |
| 3816 | -- |
| 3817 | -- Name: hpc_serviceprovider; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3818 | -- |
| 3819 | |
| 3820 | CREATE TABLE hpc_serviceprovider ( |
| 3821 | id integer NOT NULL, |
| 3822 | created timestamp with time zone NOT NULL, |
| 3823 | updated timestamp with time zone NOT NULL, |
| 3824 | enacted timestamp with time zone, |
| 3825 | policed timestamp with time zone, |
| 3826 | backend_register character varying(140), |
| 3827 | backend_status character varying(1024) NOT NULL, |
| 3828 | deleted boolean NOT NULL, |
| 3829 | write_protect boolean NOT NULL, |
| 3830 | lazy_blocked boolean NOT NULL, |
| 3831 | no_sync boolean NOT NULL, |
| 3832 | service_provider_id integer, |
| 3833 | name character varying(254) NOT NULL, |
| 3834 | description text, |
| 3835 | enabled boolean NOT NULL, |
| 3836 | "hpcService_id" integer NOT NULL |
| 3837 | ); |
| 3838 | |
| 3839 | |
| 3840 | ALTER TABLE public.hpc_serviceprovider OWNER TO postgres; |
| 3841 | |
| 3842 | -- |
| 3843 | -- Name: hpc_serviceprovider_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3844 | -- |
| 3845 | |
| 3846 | CREATE SEQUENCE hpc_serviceprovider_id_seq |
| 3847 | START WITH 1 |
| 3848 | INCREMENT BY 1 |
| 3849 | NO MINVALUE |
| 3850 | NO MAXVALUE |
| 3851 | CACHE 1; |
| 3852 | |
| 3853 | |
| 3854 | ALTER TABLE public.hpc_serviceprovider_id_seq OWNER TO postgres; |
| 3855 | |
| 3856 | -- |
| 3857 | -- Name: hpc_serviceprovider_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3858 | -- |
| 3859 | |
| 3860 | ALTER SEQUENCE hpc_serviceprovider_id_seq OWNED BY hpc_serviceprovider.id; |
| 3861 | |
| 3862 | |
| 3863 | -- |
| 3864 | -- Name: hpc_sitemap; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3865 | -- |
| 3866 | |
| 3867 | CREATE TABLE hpc_sitemap ( |
| 3868 | id integer NOT NULL, |
| 3869 | created timestamp with time zone NOT NULL, |
| 3870 | updated timestamp with time zone NOT NULL, |
| 3871 | enacted timestamp with time zone, |
| 3872 | policed timestamp with time zone, |
| 3873 | backend_register character varying(140), |
| 3874 | backend_status character varying(1024) NOT NULL, |
| 3875 | deleted boolean NOT NULL, |
| 3876 | write_protect boolean NOT NULL, |
| 3877 | lazy_blocked boolean NOT NULL, |
| 3878 | no_sync boolean NOT NULL, |
| 3879 | name character varying(64) NOT NULL, |
| 3880 | description text, |
| 3881 | map character varying(100) NOT NULL, |
| 3882 | map_id integer, |
| 3883 | "cdnPrefix_id" integer, |
| 3884 | "contentProvider_id" integer, |
| 3885 | "hpcService_id" integer, |
| 3886 | "serviceProvider_id" integer |
| 3887 | ); |
| 3888 | |
| 3889 | |
| 3890 | ALTER TABLE public.hpc_sitemap OWNER TO postgres; |
| 3891 | |
| 3892 | -- |
| 3893 | -- Name: hpc_sitemap_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3894 | -- |
| 3895 | |
| 3896 | CREATE SEQUENCE hpc_sitemap_id_seq |
| 3897 | START WITH 1 |
| 3898 | INCREMENT BY 1 |
| 3899 | NO MINVALUE |
| 3900 | NO MAXVALUE |
| 3901 | CACHE 1; |
| 3902 | |
| 3903 | |
| 3904 | ALTER TABLE public.hpc_sitemap_id_seq OWNER TO postgres; |
| 3905 | |
| 3906 | -- |
| 3907 | -- Name: hpc_sitemap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3908 | -- |
| 3909 | |
| 3910 | ALTER SEQUENCE hpc_sitemap_id_seq OWNED BY hpc_sitemap.id; |
| 3911 | |
| 3912 | |
| 3913 | -- |
| 3914 | -- Name: requestrouter_requestrouterservice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3915 | -- |
| 3916 | |
| 3917 | CREATE TABLE requestrouter_requestrouterservice ( |
| 3918 | service_ptr_id integer NOT NULL, |
| 3919 | "behindNat" boolean NOT NULL, |
| 3920 | "defaultTTL" integer NOT NULL, |
| 3921 | "defaultAction" character varying(30) NOT NULL, |
| 3922 | "lastResortAction" character varying(30) NOT NULL, |
| 3923 | "maxAnswers" integer NOT NULL, |
| 3924 | CONSTRAINT "requestrouter_requestrouterservice_defaultTTL_check" CHECK (("defaultTTL" >= 0)), |
| 3925 | CONSTRAINT "requestrouter_requestrouterservice_maxAnswers_check" CHECK (("maxAnswers" >= 0)) |
| 3926 | ); |
| 3927 | |
| 3928 | |
| 3929 | ALTER TABLE public.requestrouter_requestrouterservice OWNER TO postgres; |
| 3930 | |
| 3931 | -- |
| 3932 | -- Name: requestrouter_servicemap; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3933 | -- |
| 3934 | |
| 3935 | CREATE TABLE requestrouter_servicemap ( |
| 3936 | id integer NOT NULL, |
| 3937 | created timestamp with time zone NOT NULL, |
| 3938 | updated timestamp with time zone NOT NULL, |
| 3939 | enacted timestamp with time zone, |
| 3940 | policed timestamp with time zone, |
| 3941 | backend_register character varying(140), |
| 3942 | backend_status character varying(1024) NOT NULL, |
| 3943 | deleted boolean NOT NULL, |
| 3944 | write_protect boolean NOT NULL, |
| 3945 | lazy_blocked boolean NOT NULL, |
| 3946 | no_sync boolean NOT NULL, |
| 3947 | name character varying(50) NOT NULL, |
| 3948 | prefix character varying(256) NOT NULL, |
| 3949 | "siteMap" character varying(100) NOT NULL, |
| 3950 | "accessMap" character varying(100) NOT NULL, |
| 3951 | owner_id integer NOT NULL, |
| 3952 | slice_id integer NOT NULL |
| 3953 | ); |
| 3954 | |
| 3955 | |
| 3956 | ALTER TABLE public.requestrouter_servicemap OWNER TO postgres; |
| 3957 | |
| 3958 | -- |
| 3959 | -- Name: requestrouter_servicemap_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3960 | -- |
| 3961 | |
| 3962 | CREATE SEQUENCE requestrouter_servicemap_id_seq |
| 3963 | START WITH 1 |
| 3964 | INCREMENT BY 1 |
| 3965 | NO MINVALUE |
| 3966 | NO MAXVALUE |
| 3967 | CACHE 1; |
| 3968 | |
| 3969 | |
| 3970 | ALTER TABLE public.requestrouter_servicemap_id_seq OWNER TO postgres; |
| 3971 | |
| 3972 | -- |
| 3973 | -- Name: requestrouter_servicemap_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 3974 | -- |
| 3975 | |
| 3976 | ALTER SEQUENCE requestrouter_servicemap_id_seq OWNED BY requestrouter_servicemap.id; |
| 3977 | |
| 3978 | |
| 3979 | -- |
| 3980 | -- Name: syndicate_storage_slicesecret; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 3981 | -- |
| 3982 | |
| 3983 | CREATE TABLE syndicate_storage_slicesecret ( |
| 3984 | id integer NOT NULL, |
| 3985 | secret text NOT NULL, |
| 3986 | slice_id_id integer NOT NULL |
| 3987 | ); |
| 3988 | |
| 3989 | |
| 3990 | ALTER TABLE public.syndicate_storage_slicesecret OWNER TO postgres; |
| 3991 | |
| 3992 | -- |
| 3993 | -- Name: syndicate_storage_slicesecret_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 3994 | -- |
| 3995 | |
| 3996 | CREATE SEQUENCE syndicate_storage_slicesecret_id_seq |
| 3997 | START WITH 1 |
| 3998 | INCREMENT BY 1 |
| 3999 | NO MINVALUE |
| 4000 | NO MAXVALUE |
| 4001 | CACHE 1; |
| 4002 | |
| 4003 | |
| 4004 | ALTER TABLE public.syndicate_storage_slicesecret_id_seq OWNER TO postgres; |
| 4005 | |
| 4006 | -- |
| 4007 | -- Name: syndicate_storage_slicesecret_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 4008 | -- |
| 4009 | |
| 4010 | ALTER SEQUENCE syndicate_storage_slicesecret_id_seq OWNED BY syndicate_storage_slicesecret.id; |
| 4011 | |
| 4012 | |
| 4013 | -- |
| 4014 | -- Name: syndicate_storage_syndicateprincipal; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 4015 | -- |
| 4016 | |
| 4017 | CREATE TABLE syndicate_storage_syndicateprincipal ( |
| 4018 | id integer NOT NULL, |
| 4019 | created timestamp with time zone NOT NULL, |
| 4020 | updated timestamp with time zone NOT NULL, |
| 4021 | enacted timestamp with time zone, |
| 4022 | policed timestamp with time zone, |
| 4023 | backend_register character varying(140), |
| 4024 | backend_status character varying(1024) NOT NULL, |
| 4025 | deleted boolean NOT NULL, |
| 4026 | write_protect boolean NOT NULL, |
| 4027 | lazy_blocked boolean NOT NULL, |
| 4028 | no_sync boolean NOT NULL, |
| 4029 | principal_id text NOT NULL, |
| 4030 | public_key_pem text NOT NULL, |
| 4031 | sealed_private_key text NOT NULL |
| 4032 | ); |
| 4033 | |
| 4034 | |
| 4035 | ALTER TABLE public.syndicate_storage_syndicateprincipal OWNER TO postgres; |
| 4036 | |
| 4037 | -- |
| 4038 | -- Name: syndicate_storage_syndicateprincipal_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 4039 | -- |
| 4040 | |
| 4041 | CREATE SEQUENCE syndicate_storage_syndicateprincipal_id_seq |
| 4042 | START WITH 1 |
| 4043 | INCREMENT BY 1 |
| 4044 | NO MINVALUE |
| 4045 | NO MAXVALUE |
| 4046 | CACHE 1; |
| 4047 | |
| 4048 | |
| 4049 | ALTER TABLE public.syndicate_storage_syndicateprincipal_id_seq OWNER TO postgres; |
| 4050 | |
| 4051 | -- |
| 4052 | -- Name: syndicate_storage_syndicateprincipal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 4053 | -- |
| 4054 | |
| 4055 | ALTER SEQUENCE syndicate_storage_syndicateprincipal_id_seq OWNED BY syndicate_storage_syndicateprincipal.id; |
| 4056 | |
| 4057 | |
| 4058 | -- |
| 4059 | -- Name: syndicate_storage_syndicateservice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 4060 | -- |
| 4061 | |
| 4062 | CREATE TABLE syndicate_storage_syndicateservice ( |
| 4063 | service_ptr_id integer NOT NULL |
| 4064 | ); |
| 4065 | |
| 4066 | |
| 4067 | ALTER TABLE public.syndicate_storage_syndicateservice OWNER TO postgres; |
| 4068 | |
| 4069 | -- |
| 4070 | -- Name: syndicate_storage_volume; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 4071 | -- |
| 4072 | |
| 4073 | CREATE TABLE syndicate_storage_volume ( |
| 4074 | id integer NOT NULL, |
| 4075 | created timestamp with time zone NOT NULL, |
| 4076 | updated timestamp with time zone NOT NULL, |
| 4077 | enacted timestamp with time zone, |
| 4078 | policed timestamp with time zone, |
| 4079 | backend_register character varying(140), |
| 4080 | backend_status character varying(1024) NOT NULL, |
| 4081 | deleted boolean NOT NULL, |
| 4082 | write_protect boolean NOT NULL, |
| 4083 | lazy_blocked boolean NOT NULL, |
| 4084 | no_sync boolean NOT NULL, |
| 4085 | name character varying(64) NOT NULL, |
| 4086 | description text, |
| 4087 | blocksize integer NOT NULL, |
| 4088 | private boolean NOT NULL, |
| 4089 | archive boolean NOT NULL, |
| 4090 | cap_read_data boolean NOT NULL, |
| 4091 | cap_write_data boolean NOT NULL, |
| 4092 | cap_host_data boolean NOT NULL, |
| 4093 | owner_id_id integer NOT NULL, |
| 4094 | CONSTRAINT syndicate_storage_volume_blocksize_check CHECK ((blocksize >= 0)) |
| 4095 | ); |
| 4096 | |
| 4097 | |
| 4098 | ALTER TABLE public.syndicate_storage_volume OWNER TO postgres; |
| 4099 | |
| 4100 | -- |
| 4101 | -- Name: syndicate_storage_volume_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 4102 | -- |
| 4103 | |
| 4104 | CREATE SEQUENCE syndicate_storage_volume_id_seq |
| 4105 | START WITH 1 |
| 4106 | INCREMENT BY 1 |
| 4107 | NO MINVALUE |
| 4108 | NO MAXVALUE |
| 4109 | CACHE 1; |
| 4110 | |
| 4111 | |
| 4112 | ALTER TABLE public.syndicate_storage_volume_id_seq OWNER TO postgres; |
| 4113 | |
| 4114 | -- |
| 4115 | -- Name: syndicate_storage_volume_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 4116 | -- |
| 4117 | |
| 4118 | ALTER SEQUENCE syndicate_storage_volume_id_seq OWNED BY syndicate_storage_volume.id; |
| 4119 | |
| 4120 | |
| 4121 | -- |
| 4122 | -- Name: syndicate_storage_volumeaccessright; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 4123 | -- |
| 4124 | |
| 4125 | CREATE TABLE syndicate_storage_volumeaccessright ( |
| 4126 | id integer NOT NULL, |
| 4127 | created timestamp with time zone NOT NULL, |
| 4128 | updated timestamp with time zone NOT NULL, |
| 4129 | enacted timestamp with time zone, |
| 4130 | policed timestamp with time zone, |
| 4131 | backend_register character varying(140), |
| 4132 | backend_status character varying(1024) NOT NULL, |
| 4133 | deleted boolean NOT NULL, |
| 4134 | write_protect boolean NOT NULL, |
| 4135 | lazy_blocked boolean NOT NULL, |
| 4136 | no_sync boolean NOT NULL, |
| 4137 | cap_read_data boolean NOT NULL, |
| 4138 | cap_write_data boolean NOT NULL, |
| 4139 | cap_host_data boolean NOT NULL, |
| 4140 | owner_id_id integer NOT NULL, |
| 4141 | volume_id integer NOT NULL |
| 4142 | ); |
| 4143 | |
| 4144 | |
| 4145 | ALTER TABLE public.syndicate_storage_volumeaccessright OWNER TO postgres; |
| 4146 | |
| 4147 | -- |
| 4148 | -- Name: syndicate_storage_volumeaccessright_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 4149 | -- |
| 4150 | |
| 4151 | CREATE SEQUENCE syndicate_storage_volumeaccessright_id_seq |
| 4152 | START WITH 1 |
| 4153 | INCREMENT BY 1 |
| 4154 | NO MINVALUE |
| 4155 | NO MAXVALUE |
| 4156 | CACHE 1; |
| 4157 | |
| 4158 | |
| 4159 | ALTER TABLE public.syndicate_storage_volumeaccessright_id_seq OWNER TO postgres; |
| 4160 | |
| 4161 | -- |
| 4162 | -- Name: syndicate_storage_volumeaccessright_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 4163 | -- |
| 4164 | |
| 4165 | ALTER SEQUENCE syndicate_storage_volumeaccessright_id_seq OWNED BY syndicate_storage_volumeaccessright.id; |
| 4166 | |
| 4167 | |
| 4168 | -- |
| 4169 | -- Name: syndicate_storage_volumeslice; Type: TABLE; Schema: public; Owner: postgres; Tablespace: |
| 4170 | -- |
| 4171 | |
| 4172 | CREATE TABLE syndicate_storage_volumeslice ( |
| 4173 | id integer NOT NULL, |
| 4174 | created timestamp with time zone NOT NULL, |
| 4175 | updated timestamp with time zone NOT NULL, |
| 4176 | enacted timestamp with time zone, |
| 4177 | policed timestamp with time zone, |
| 4178 | backend_register character varying(140), |
| 4179 | backend_status character varying(1024) NOT NULL, |
| 4180 | deleted boolean NOT NULL, |
| 4181 | write_protect boolean NOT NULL, |
| 4182 | lazy_blocked boolean NOT NULL, |
| 4183 | no_sync boolean NOT NULL, |
| 4184 | cap_read_data boolean NOT NULL, |
| 4185 | cap_write_data boolean NOT NULL, |
| 4186 | cap_host_data boolean NOT NULL, |
| 4187 | "UG_portnum" integer NOT NULL, |
| 4188 | "RG_portnum" integer NOT NULL, |
| 4189 | credentials_blob text, |
| 4190 | slice_id_id integer NOT NULL, |
| 4191 | volume_id_id integer NOT NULL, |
| 4192 | CONSTRAINT "syndicate_storage_volumeslice_RG_portnum_check" CHECK (("RG_portnum" >= 0)), |
| 4193 | CONSTRAINT "syndicate_storage_volumeslice_UG_portnum_check" CHECK (("UG_portnum" >= 0)) |
| 4194 | ); |
| 4195 | |
| 4196 | |
| 4197 | ALTER TABLE public.syndicate_storage_volumeslice OWNER TO postgres; |
| 4198 | |
| 4199 | -- |
| 4200 | -- Name: syndicate_storage_volumeslice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres |
| 4201 | -- |
| 4202 | |
| 4203 | CREATE SEQUENCE syndicate_storage_volumeslice_id_seq |
| 4204 | START WITH 1 |
| 4205 | INCREMENT BY 1 |
| 4206 | NO MINVALUE |
| 4207 | NO MAXVALUE |
| 4208 | CACHE 1; |
| 4209 | |
| 4210 | |
| 4211 | ALTER TABLE public.syndicate_storage_volumeslice_id_seq OWNER TO postgres; |
| 4212 | |
| 4213 | -- |
| 4214 | -- Name: syndicate_storage_volumeslice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres |
| 4215 | -- |
| 4216 | |
| 4217 | ALTER SEQUENCE syndicate_storage_volumeslice_id_seq OWNED BY syndicate_storage_volumeslice.id; |
| 4218 | |
| 4219 | |
| 4220 | -- |
| 4221 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4222 | -- |
| 4223 | |
| 4224 | ALTER TABLE ONLY auth_group ALTER COLUMN id SET DEFAULT nextval('auth_group_id_seq'::regclass); |
| 4225 | |
| 4226 | |
| 4227 | -- |
| 4228 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4229 | -- |
| 4230 | |
| 4231 | ALTER TABLE ONLY auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('auth_group_permissions_id_seq'::regclass); |
| 4232 | |
| 4233 | |
| 4234 | -- |
| 4235 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4236 | -- |
| 4237 | |
| 4238 | ALTER TABLE ONLY auth_permission ALTER COLUMN id SET DEFAULT nextval('auth_permission_id_seq'::regclass); |
| 4239 | |
| 4240 | |
| 4241 | -- |
| 4242 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4243 | -- |
| 4244 | |
| 4245 | ALTER TABLE ONLY core_account ALTER COLUMN id SET DEFAULT nextval('core_account_id_seq'::regclass); |
| 4246 | |
| 4247 | |
| 4248 | -- |
| 4249 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4250 | -- |
| 4251 | |
| 4252 | ALTER TABLE ONLY core_addresspool ALTER COLUMN id SET DEFAULT nextval('core_addresspool_id_seq'::regclass); |
| 4253 | |
| 4254 | |
| 4255 | -- |
| 4256 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4257 | -- |
| 4258 | |
| 4259 | ALTER TABLE ONLY core_charge ALTER COLUMN id SET DEFAULT nextval('core_charge_id_seq'::regclass); |
| 4260 | |
| 4261 | |
| 4262 | -- |
| 4263 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4264 | -- |
| 4265 | |
| 4266 | ALTER TABLE ONLY core_controller ALTER COLUMN id SET DEFAULT nextval('core_controller_id_seq'::regclass); |
| 4267 | |
| 4268 | |
| 4269 | -- |
| 4270 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4271 | -- |
| 4272 | |
| 4273 | ALTER TABLE ONLY core_controllercredential ALTER COLUMN id SET DEFAULT nextval('core_controllercredential_id_seq'::regclass); |
| 4274 | |
| 4275 | |
| 4276 | -- |
| 4277 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4278 | -- |
| 4279 | |
| 4280 | ALTER TABLE ONLY core_controllerdashboardview ALTER COLUMN id SET DEFAULT nextval('core_controllerdashboardview_id_seq'::regclass); |
| 4281 | |
| 4282 | |
| 4283 | -- |
| 4284 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4285 | -- |
| 4286 | |
| 4287 | ALTER TABLE ONLY core_controllerimages ALTER COLUMN id SET DEFAULT nextval('core_controllerimages_id_seq'::regclass); |
| 4288 | |
| 4289 | |
| 4290 | -- |
| 4291 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4292 | -- |
| 4293 | |
| 4294 | ALTER TABLE ONLY core_controllernetwork ALTER COLUMN id SET DEFAULT nextval('core_controllernetwork_id_seq'::regclass); |
| 4295 | |
| 4296 | |
| 4297 | -- |
| 4298 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4299 | -- |
| 4300 | |
| 4301 | ALTER TABLE ONLY core_controllerrole ALTER COLUMN id SET DEFAULT nextval('core_controllerrole_id_seq'::regclass); |
| 4302 | |
| 4303 | |
| 4304 | -- |
| 4305 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4306 | -- |
| 4307 | |
| 4308 | ALTER TABLE ONLY core_controllersite ALTER COLUMN id SET DEFAULT nextval('core_controllersite_id_seq'::regclass); |
| 4309 | |
| 4310 | |
| 4311 | -- |
| 4312 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4313 | -- |
| 4314 | |
| 4315 | ALTER TABLE ONLY core_controllersiteprivilege ALTER COLUMN id SET DEFAULT nextval('core_controllersiteprivilege_id_seq'::regclass); |
| 4316 | |
| 4317 | |
| 4318 | -- |
| 4319 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4320 | -- |
| 4321 | |
| 4322 | ALTER TABLE ONLY core_controllerslice ALTER COLUMN id SET DEFAULT nextval('core_controllerslice_id_seq'::regclass); |
| 4323 | |
| 4324 | |
| 4325 | -- |
| 4326 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4327 | -- |
| 4328 | |
| 4329 | ALTER TABLE ONLY core_controllersliceprivilege ALTER COLUMN id SET DEFAULT nextval('core_controllersliceprivilege_id_seq'::regclass); |
| 4330 | |
| 4331 | |
| 4332 | -- |
| 4333 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4334 | -- |
| 4335 | |
| 4336 | ALTER TABLE ONLY core_controlleruser ALTER COLUMN id SET DEFAULT nextval('core_controlleruser_id_seq'::regclass); |
| 4337 | |
| 4338 | |
| 4339 | -- |
| 4340 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4341 | -- |
| 4342 | |
| 4343 | ALTER TABLE ONLY core_dashboardview ALTER COLUMN id SET DEFAULT nextval('core_dashboardview_id_seq'::regclass); |
| 4344 | |
| 4345 | |
| 4346 | -- |
| 4347 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4348 | -- |
| 4349 | |
| 4350 | ALTER TABLE ONLY core_dashboardview_deployments ALTER COLUMN id SET DEFAULT nextval('core_dashboardview_deployments_id_seq'::regclass); |
| 4351 | |
| 4352 | |
| 4353 | -- |
| 4354 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4355 | -- |
| 4356 | |
| 4357 | ALTER TABLE ONLY core_deployment ALTER COLUMN id SET DEFAULT nextval('core_deployment_id_seq'::regclass); |
| 4358 | |
| 4359 | |
| 4360 | -- |
| 4361 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4362 | -- |
| 4363 | |
| 4364 | ALTER TABLE ONLY core_deploymentprivilege ALTER COLUMN id SET DEFAULT nextval('core_deploymentprivilege_id_seq'::regclass); |
| 4365 | |
| 4366 | |
| 4367 | -- |
| 4368 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4369 | -- |
| 4370 | |
| 4371 | ALTER TABLE ONLY core_deploymentrole ALTER COLUMN id SET DEFAULT nextval('core_deploymentrole_id_seq'::regclass); |
| 4372 | |
| 4373 | |
| 4374 | -- |
| 4375 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4376 | -- |
| 4377 | |
| 4378 | ALTER TABLE ONLY core_diag ALTER COLUMN id SET DEFAULT nextval('core_diag_id_seq'::regclass); |
| 4379 | |
| 4380 | |
| 4381 | -- |
| 4382 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4383 | -- |
| 4384 | |
| 4385 | ALTER TABLE ONLY core_flavor ALTER COLUMN id SET DEFAULT nextval('core_flavor_id_seq'::regclass); |
| 4386 | |
| 4387 | |
| 4388 | -- |
| 4389 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4390 | -- |
| 4391 | |
| 4392 | ALTER TABLE ONLY core_flavor_deployments ALTER COLUMN id SET DEFAULT nextval('core_flavor_deployments_id_seq'::regclass); |
| 4393 | |
| 4394 | |
| 4395 | -- |
| 4396 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4397 | -- |
| 4398 | |
| 4399 | ALTER TABLE ONLY core_image ALTER COLUMN id SET DEFAULT nextval('core_image_id_seq'::regclass); |
| 4400 | |
| 4401 | |
| 4402 | -- |
| 4403 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4404 | -- |
| 4405 | |
| 4406 | ALTER TABLE ONLY core_imagedeployments ALTER COLUMN id SET DEFAULT nextval('core_imagedeployments_id_seq'::regclass); |
| 4407 | |
| 4408 | |
| 4409 | -- |
| 4410 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4411 | -- |
| 4412 | |
| 4413 | ALTER TABLE ONLY core_instance ALTER COLUMN id SET DEFAULT nextval('core_instance_id_seq'::regclass); |
| 4414 | |
| 4415 | |
| 4416 | -- |
| 4417 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4418 | -- |
| 4419 | |
| 4420 | ALTER TABLE ONLY core_invoice ALTER COLUMN id SET DEFAULT nextval('core_invoice_id_seq'::regclass); |
| 4421 | |
| 4422 | |
| 4423 | -- |
| 4424 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4425 | -- |
| 4426 | |
| 4427 | ALTER TABLE ONLY core_network ALTER COLUMN id SET DEFAULT nextval('core_network_id_seq'::regclass); |
| 4428 | |
| 4429 | |
| 4430 | -- |
| 4431 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4432 | -- |
| 4433 | |
| 4434 | ALTER TABLE ONLY core_network_permitted_slices ALTER COLUMN id SET DEFAULT nextval('core_network_permitted_slices_id_seq'::regclass); |
| 4435 | |
| 4436 | |
| 4437 | -- |
| 4438 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4439 | -- |
| 4440 | |
| 4441 | ALTER TABLE ONLY core_networkparameter ALTER COLUMN id SET DEFAULT nextval('core_networkparameter_id_seq'::regclass); |
| 4442 | |
| 4443 | |
| 4444 | -- |
| 4445 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4446 | -- |
| 4447 | |
| 4448 | ALTER TABLE ONLY core_networkparametertype ALTER COLUMN id SET DEFAULT nextval('core_networkparametertype_id_seq'::regclass); |
| 4449 | |
| 4450 | |
| 4451 | -- |
| 4452 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4453 | -- |
| 4454 | |
| 4455 | ALTER TABLE ONLY core_networkslice ALTER COLUMN id SET DEFAULT nextval('core_networkslice_id_seq'::regclass); |
| 4456 | |
| 4457 | |
| 4458 | -- |
| 4459 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4460 | -- |
| 4461 | |
| 4462 | ALTER TABLE ONLY core_networktemplate ALTER COLUMN id SET DEFAULT nextval('core_networktemplate_id_seq'::regclass); |
| 4463 | |
| 4464 | |
| 4465 | -- |
| 4466 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4467 | -- |
| 4468 | |
| 4469 | ALTER TABLE ONLY core_node ALTER COLUMN id SET DEFAULT nextval('core_node_id_seq'::regclass); |
| 4470 | |
| 4471 | |
| 4472 | -- |
| 4473 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4474 | -- |
| 4475 | |
| 4476 | ALTER TABLE ONLY core_nodelabel ALTER COLUMN id SET DEFAULT nextval('core_nodelabel_id_seq'::regclass); |
| 4477 | |
| 4478 | |
| 4479 | -- |
| 4480 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4481 | -- |
| 4482 | |
| 4483 | ALTER TABLE ONLY core_nodelabel_node ALTER COLUMN id SET DEFAULT nextval('core_nodelabel_node_id_seq'::regclass); |
| 4484 | |
| 4485 | |
| 4486 | -- |
| 4487 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4488 | -- |
| 4489 | |
| 4490 | ALTER TABLE ONLY core_payment ALTER COLUMN id SET DEFAULT nextval('core_payment_id_seq'::regclass); |
| 4491 | |
| 4492 | |
| 4493 | -- |
| 4494 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4495 | -- |
| 4496 | |
| 4497 | ALTER TABLE ONLY core_port ALTER COLUMN id SET DEFAULT nextval('core_port_id_seq'::regclass); |
| 4498 | |
| 4499 | |
| 4500 | -- |
| 4501 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4502 | -- |
| 4503 | |
| 4504 | ALTER TABLE ONLY core_program ALTER COLUMN id SET DEFAULT nextval('core_program_id_seq'::regclass); |
| 4505 | |
| 4506 | |
| 4507 | -- |
| 4508 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4509 | -- |
| 4510 | |
| 4511 | ALTER TABLE ONLY core_project ALTER COLUMN id SET DEFAULT nextval('core_project_id_seq'::regclass); |
| 4512 | |
| 4513 | |
| 4514 | -- |
| 4515 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4516 | -- |
| 4517 | |
| 4518 | ALTER TABLE ONLY core_reservation ALTER COLUMN id SET DEFAULT nextval('core_reservation_id_seq'::regclass); |
| 4519 | |
| 4520 | |
| 4521 | -- |
| 4522 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4523 | -- |
| 4524 | |
| 4525 | ALTER TABLE ONLY core_reservedresource ALTER COLUMN id SET DEFAULT nextval('core_reservedresource_id_seq'::regclass); |
| 4526 | |
| 4527 | |
| 4528 | -- |
| 4529 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4530 | -- |
| 4531 | |
| 4532 | ALTER TABLE ONLY core_role ALTER COLUMN id SET DEFAULT nextval('core_role_id_seq'::regclass); |
| 4533 | |
| 4534 | |
| 4535 | -- |
| 4536 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4537 | -- |
| 4538 | |
| 4539 | ALTER TABLE ONLY core_router ALTER COLUMN id SET DEFAULT nextval('core_router_id_seq'::regclass); |
| 4540 | |
| 4541 | |
| 4542 | -- |
| 4543 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4544 | -- |
| 4545 | |
| 4546 | ALTER TABLE ONLY core_router_networks ALTER COLUMN id SET DEFAULT nextval('core_router_networks_id_seq'::regclass); |
| 4547 | |
| 4548 | |
| 4549 | -- |
| 4550 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4551 | -- |
| 4552 | |
| 4553 | ALTER TABLE ONLY "core_router_permittedNetworks" ALTER COLUMN id SET DEFAULT nextval('"core_router_permittedNetworks_id_seq"'::regclass); |
| 4554 | |
| 4555 | |
| 4556 | -- |
| 4557 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4558 | -- |
| 4559 | |
| 4560 | ALTER TABLE ONLY core_service ALTER COLUMN id SET DEFAULT nextval('core_service_id_seq'::regclass); |
| 4561 | |
| 4562 | |
| 4563 | -- |
| 4564 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4565 | -- |
| 4566 | |
| 4567 | ALTER TABLE ONLY core_serviceattribute ALTER COLUMN id SET DEFAULT nextval('core_serviceattribute_id_seq'::regclass); |
| 4568 | |
| 4569 | |
| 4570 | -- |
| 4571 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4572 | -- |
| 4573 | |
| 4574 | ALTER TABLE ONLY core_serviceclass ALTER COLUMN id SET DEFAULT nextval('core_serviceclass_id_seq'::regclass); |
| 4575 | |
| 4576 | |
| 4577 | -- |
| 4578 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4579 | -- |
| 4580 | |
| 4581 | ALTER TABLE ONLY "core_serviceclass_upgradeFrom" ALTER COLUMN id SET DEFAULT nextval('"core_serviceclass_upgradeFrom_id_seq"'::regclass); |
| 4582 | |
| 4583 | |
| 4584 | -- |
| 4585 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4586 | -- |
| 4587 | |
| 4588 | ALTER TABLE ONLY core_serviceprivilege ALTER COLUMN id SET DEFAULT nextval('core_serviceprivilege_id_seq'::regclass); |
| 4589 | |
| 4590 | |
| 4591 | -- |
| 4592 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4593 | -- |
| 4594 | |
| 4595 | ALTER TABLE ONLY core_serviceresource ALTER COLUMN id SET DEFAULT nextval('core_serviceresource_id_seq'::regclass); |
| 4596 | |
| 4597 | |
| 4598 | -- |
| 4599 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4600 | -- |
| 4601 | |
| 4602 | ALTER TABLE ONLY core_servicerole ALTER COLUMN id SET DEFAULT nextval('core_servicerole_id_seq'::regclass); |
| 4603 | |
| 4604 | |
| 4605 | -- |
| 4606 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4607 | -- |
| 4608 | |
| 4609 | ALTER TABLE ONLY core_site ALTER COLUMN id SET DEFAULT nextval('core_site_id_seq'::regclass); |
| 4610 | |
| 4611 | |
| 4612 | -- |
| 4613 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4614 | -- |
| 4615 | |
| 4616 | ALTER TABLE ONLY core_sitecredential ALTER COLUMN id SET DEFAULT nextval('core_sitecredential_id_seq'::regclass); |
| 4617 | |
| 4618 | |
| 4619 | -- |
| 4620 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4621 | -- |
| 4622 | |
| 4623 | ALTER TABLE ONLY core_sitedeployment ALTER COLUMN id SET DEFAULT nextval('core_sitedeployment_id_seq'::regclass); |
| 4624 | |
| 4625 | |
| 4626 | -- |
| 4627 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4628 | -- |
| 4629 | |
| 4630 | ALTER TABLE ONLY core_siteprivilege ALTER COLUMN id SET DEFAULT nextval('core_siteprivilege_id_seq'::regclass); |
| 4631 | |
| 4632 | |
| 4633 | -- |
| 4634 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4635 | -- |
| 4636 | |
| 4637 | ALTER TABLE ONLY core_siterole ALTER COLUMN id SET DEFAULT nextval('core_siterole_id_seq'::regclass); |
| 4638 | |
| 4639 | |
| 4640 | -- |
| 4641 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4642 | -- |
| 4643 | |
| 4644 | ALTER TABLE ONLY core_slice ALTER COLUMN id SET DEFAULT nextval('core_slice_id_seq'::regclass); |
| 4645 | |
| 4646 | |
| 4647 | -- |
| 4648 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4649 | -- |
| 4650 | |
| 4651 | ALTER TABLE ONLY core_slicecredential ALTER COLUMN id SET DEFAULT nextval('core_slicecredential_id_seq'::regclass); |
| 4652 | |
| 4653 | |
| 4654 | -- |
| 4655 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4656 | -- |
| 4657 | |
| 4658 | ALTER TABLE ONLY core_sliceprivilege ALTER COLUMN id SET DEFAULT nextval('core_sliceprivilege_id_seq'::regclass); |
| 4659 | |
| 4660 | |
| 4661 | -- |
| 4662 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4663 | -- |
| 4664 | |
| 4665 | ALTER TABLE ONLY core_slicerole ALTER COLUMN id SET DEFAULT nextval('core_slicerole_id_seq'::regclass); |
| 4666 | |
| 4667 | |
| 4668 | -- |
| 4669 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4670 | -- |
| 4671 | |
| 4672 | ALTER TABLE ONLY core_slicetag ALTER COLUMN id SET DEFAULT nextval('core_slicetag_id_seq'::regclass); |
| 4673 | |
| 4674 | |
| 4675 | -- |
| 4676 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4677 | -- |
| 4678 | |
| 4679 | ALTER TABLE ONLY core_tag ALTER COLUMN id SET DEFAULT nextval('core_tag_id_seq'::regclass); |
| 4680 | |
| 4681 | |
| 4682 | -- |
| 4683 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4684 | -- |
| 4685 | |
| 4686 | ALTER TABLE ONLY core_tenant ALTER COLUMN id SET DEFAULT nextval('core_tenant_id_seq'::regclass); |
| 4687 | |
| 4688 | |
| 4689 | -- |
| 4690 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4691 | -- |
| 4692 | |
| 4693 | ALTER TABLE ONLY core_tenantattribute ALTER COLUMN id SET DEFAULT nextval('core_tenantattribute_id_seq'::regclass); |
| 4694 | |
| 4695 | |
| 4696 | -- |
| 4697 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4698 | -- |
| 4699 | |
| 4700 | ALTER TABLE ONLY core_tenantroot ALTER COLUMN id SET DEFAULT nextval('core_tenantroot_id_seq'::regclass); |
| 4701 | |
| 4702 | |
| 4703 | -- |
| 4704 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4705 | -- |
| 4706 | |
| 4707 | ALTER TABLE ONLY core_tenantrootprivilege ALTER COLUMN id SET DEFAULT nextval('core_tenantrootprivilege_id_seq'::regclass); |
| 4708 | |
| 4709 | |
| 4710 | -- |
| 4711 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4712 | -- |
| 4713 | |
| 4714 | ALTER TABLE ONLY core_tenantrootrole ALTER COLUMN id SET DEFAULT nextval('core_tenantrootrole_id_seq'::regclass); |
| 4715 | |
| 4716 | |
| 4717 | -- |
| 4718 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4719 | -- |
| 4720 | |
| 4721 | ALTER TABLE ONLY core_usableobject ALTER COLUMN id SET DEFAULT nextval('core_usableobject_id_seq'::regclass); |
| 4722 | |
| 4723 | |
| 4724 | -- |
| 4725 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4726 | -- |
| 4727 | |
| 4728 | ALTER TABLE ONLY core_user ALTER COLUMN id SET DEFAULT nextval('core_user_id_seq'::regclass); |
| 4729 | |
| 4730 | |
| 4731 | -- |
| 4732 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4733 | -- |
| 4734 | |
| 4735 | ALTER TABLE ONLY core_usercredential ALTER COLUMN id SET DEFAULT nextval('core_usercredential_id_seq'::regclass); |
| 4736 | |
| 4737 | |
| 4738 | -- |
| 4739 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4740 | -- |
| 4741 | |
| 4742 | ALTER TABLE ONLY core_userdashboardview ALTER COLUMN id SET DEFAULT nextval('core_userdashboardview_id_seq'::regclass); |
| 4743 | |
| 4744 | |
| 4745 | -- |
| 4746 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4747 | -- |
| 4748 | |
| 4749 | ALTER TABLE ONLY django_admin_log ALTER COLUMN id SET DEFAULT nextval('django_admin_log_id_seq'::regclass); |
| 4750 | |
| 4751 | |
| 4752 | -- |
| 4753 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4754 | -- |
| 4755 | |
| 4756 | ALTER TABLE ONLY django_content_type ALTER COLUMN id SET DEFAULT nextval('django_content_type_id_seq'::regclass); |
| 4757 | |
| 4758 | |
| 4759 | -- |
| 4760 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4761 | -- |
| 4762 | |
| 4763 | ALTER TABLE ONLY django_migrations ALTER COLUMN id SET DEFAULT nextval('django_migrations_id_seq'::regclass); |
| 4764 | |
| 4765 | |
| 4766 | -- |
| 4767 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4768 | -- |
| 4769 | |
| 4770 | ALTER TABLE ONLY hpc_accessmap ALTER COLUMN id SET DEFAULT nextval('hpc_accessmap_id_seq'::regclass); |
| 4771 | |
| 4772 | |
| 4773 | -- |
| 4774 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4775 | -- |
| 4776 | |
| 4777 | ALTER TABLE ONLY hpc_cdnprefix ALTER COLUMN id SET DEFAULT nextval('hpc_cdnprefix_id_seq'::regclass); |
| 4778 | |
| 4779 | |
| 4780 | -- |
| 4781 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4782 | -- |
| 4783 | |
| 4784 | ALTER TABLE ONLY hpc_contentprovider ALTER COLUMN id SET DEFAULT nextval('hpc_contentprovider_id_seq'::regclass); |
| 4785 | |
| 4786 | |
| 4787 | -- |
| 4788 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4789 | -- |
| 4790 | |
| 4791 | ALTER TABLE ONLY hpc_contentprovider_users ALTER COLUMN id SET DEFAULT nextval('hpc_contentprovider_users_id_seq'::regclass); |
| 4792 | |
| 4793 | |
| 4794 | -- |
| 4795 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4796 | -- |
| 4797 | |
| 4798 | ALTER TABLE ONLY hpc_hpchealthcheck ALTER COLUMN id SET DEFAULT nextval('hpc_hpchealthcheck_id_seq'::regclass); |
| 4799 | |
| 4800 | |
| 4801 | -- |
| 4802 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4803 | -- |
| 4804 | |
| 4805 | ALTER TABLE ONLY hpc_originserver ALTER COLUMN id SET DEFAULT nextval('hpc_originserver_id_seq'::regclass); |
| 4806 | |
| 4807 | |
| 4808 | -- |
| 4809 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4810 | -- |
| 4811 | |
| 4812 | ALTER TABLE ONLY hpc_serviceprovider ALTER COLUMN id SET DEFAULT nextval('hpc_serviceprovider_id_seq'::regclass); |
| 4813 | |
| 4814 | |
| 4815 | -- |
| 4816 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4817 | -- |
| 4818 | |
| 4819 | ALTER TABLE ONLY hpc_sitemap ALTER COLUMN id SET DEFAULT nextval('hpc_sitemap_id_seq'::regclass); |
| 4820 | |
| 4821 | |
| 4822 | -- |
| 4823 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4824 | -- |
| 4825 | |
| 4826 | ALTER TABLE ONLY requestrouter_servicemap ALTER COLUMN id SET DEFAULT nextval('requestrouter_servicemap_id_seq'::regclass); |
| 4827 | |
| 4828 | |
| 4829 | -- |
| 4830 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4831 | -- |
| 4832 | |
| 4833 | ALTER TABLE ONLY syndicate_storage_slicesecret ALTER COLUMN id SET DEFAULT nextval('syndicate_storage_slicesecret_id_seq'::regclass); |
| 4834 | |
| 4835 | |
| 4836 | -- |
| 4837 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4838 | -- |
| 4839 | |
| 4840 | ALTER TABLE ONLY syndicate_storage_syndicateprincipal ALTER COLUMN id SET DEFAULT nextval('syndicate_storage_syndicateprincipal_id_seq'::regclass); |
| 4841 | |
| 4842 | |
| 4843 | -- |
| 4844 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4845 | -- |
| 4846 | |
| 4847 | ALTER TABLE ONLY syndicate_storage_volume ALTER COLUMN id SET DEFAULT nextval('syndicate_storage_volume_id_seq'::regclass); |
| 4848 | |
| 4849 | |
| 4850 | -- |
| 4851 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4852 | -- |
| 4853 | |
| 4854 | ALTER TABLE ONLY syndicate_storage_volumeaccessright ALTER COLUMN id SET DEFAULT nextval('syndicate_storage_volumeaccessright_id_seq'::regclass); |
| 4855 | |
| 4856 | |
| 4857 | -- |
| 4858 | -- Name: id; Type: DEFAULT; Schema: public; Owner: postgres |
| 4859 | -- |
| 4860 | |
| 4861 | ALTER TABLE ONLY syndicate_storage_volumeslice ALTER COLUMN id SET DEFAULT nextval('syndicate_storage_volumeslice_id_seq'::regclass); |
| 4862 | |
| 4863 | |
| 4864 | -- |
| 4865 | -- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: postgres |
| 4866 | -- |
| 4867 | |
| 4868 | COPY auth_group (id, name) FROM stdin; |
| 4869 | \. |
| 4870 | |
| 4871 | |
| 4872 | -- |
| 4873 | -- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 4874 | -- |
| 4875 | |
| 4876 | SELECT pg_catalog.setval('auth_group_id_seq', 1, false); |
| 4877 | |
| 4878 | |
| 4879 | -- |
| 4880 | -- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: postgres |
| 4881 | -- |
| 4882 | |
| 4883 | COPY auth_group_permissions (id, group_id, permission_id) FROM stdin; |
| 4884 | \. |
| 4885 | |
| 4886 | |
| 4887 | -- |
| 4888 | -- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 4889 | -- |
| 4890 | |
| 4891 | SELECT pg_catalog.setval('auth_group_permissions_id_seq', 1, false); |
| 4892 | |
| 4893 | |
| 4894 | -- |
| 4895 | -- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: postgres |
| 4896 | -- |
| 4897 | |
| 4898 | COPY auth_permission (id, name, content_type_id, codename) FROM stdin; |
| 4899 | 1 Can add permission 1 add_permission |
| 4900 | 2 Can change permission 1 change_permission |
| 4901 | 3 Can delete permission 1 delete_permission |
| 4902 | 4 Can add group 2 add_group |
| 4903 | 5 Can change group 2 change_group |
| 4904 | 6 Can delete group 2 delete_group |
| 4905 | 7 Can add content type 3 add_contenttype |
| 4906 | 8 Can change content type 3 change_contenttype |
| 4907 | 9 Can delete content type 3 delete_contenttype |
| 4908 | 10 Can add session 4 add_session |
| 4909 | 11 Can change session 4 change_session |
| 4910 | 12 Can delete session 4 delete_session |
| 4911 | 13 Can add log entry 5 add_logentry |
| 4912 | 14 Can change log entry 5 change_logentry |
| 4913 | 15 Can delete log entry 5 delete_logentry |
| 4914 | 16 Can add project 6 add_project |
| 4915 | 17 Can change project 6 change_project |
| 4916 | 18 Can delete project 6 delete_project |
| 4917 | 19 Can add service 7 add_service |
| 4918 | 20 Can change service 7 change_service |
| 4919 | 21 Can delete service 7 delete_service |
| 4920 | 22 Can add service attribute 8 add_serviceattribute |
| 4921 | 23 Can change service attribute 8 change_serviceattribute |
| 4922 | 24 Can delete service attribute 8 delete_serviceattribute |
| 4923 | 25 Can add service role 9 add_servicerole |
| 4924 | 26 Can change service role 9 change_servicerole |
| 4925 | 27 Can delete service role 9 delete_servicerole |
| 4926 | 28 Can add service privilege 10 add_serviceprivilege |
| 4927 | 29 Can change service privilege 10 change_serviceprivilege |
| 4928 | 30 Can delete service privilege 10 delete_serviceprivilege |
| 4929 | 31 Can add tenant root 11 add_tenantroot |
| 4930 | 32 Can change tenant root 11 change_tenantroot |
| 4931 | 33 Can delete tenant root 11 delete_tenantroot |
| 4932 | 34 Can add tenant 12 add_tenant |
| 4933 | 35 Can change tenant 12 change_tenant |
| 4934 | 36 Can delete tenant 12 delete_tenant |
| 4935 | 37 Can add tenant with container 12 add_tenantwithcontainer |
| 4936 | 38 Can change tenant with container 12 change_tenantwithcontainer |
| 4937 | 39 Can delete tenant with container 12 delete_tenantwithcontainer |
| 4938 | 40 Can add coarse tenant 12 add_coarsetenant |
| 4939 | 41 Can change coarse tenant 12 change_coarsetenant |
| 4940 | 42 Can delete coarse tenant 12 delete_coarsetenant |
| 4941 | 43 Can add subscriber 11 add_subscriber |
| 4942 | 44 Can change subscriber 11 change_subscriber |
| 4943 | 45 Can delete subscriber 11 delete_subscriber |
| 4944 | 46 Can add provider 11 add_provider |
| 4945 | 47 Can change provider 11 change_provider |
| 4946 | 48 Can delete provider 11 delete_provider |
| 4947 | 49 Can add tenant attribute 13 add_tenantattribute |
| 4948 | 50 Can change tenant attribute 13 change_tenantattribute |
| 4949 | 51 Can delete tenant attribute 13 delete_tenantattribute |
| 4950 | 52 Can add tenant root role 14 add_tenantrootrole |
| 4951 | 53 Can change tenant root role 14 change_tenantrootrole |
| 4952 | 54 Can delete tenant root role 14 delete_tenantrootrole |
| 4953 | 55 Can add tenant root privilege 15 add_tenantrootprivilege |
| 4954 | 56 Can change tenant root privilege 15 change_tenantrootprivilege |
| 4955 | 57 Can delete tenant root privilege 15 delete_tenantrootprivilege |
| 4956 | 58 Can add tag 16 add_tag |
| 4957 | 59 Can change tag 16 change_tag |
| 4958 | 60 Can delete tag 16 delete_tag |
| 4959 | 61 Can add role 17 add_role |
| 4960 | 62 Can change role 17 change_role |
| 4961 | 63 Can delete role 17 delete_role |
| 4962 | 64 Can add site 18 add_site |
| 4963 | 65 Can change site 18 change_site |
| 4964 | 66 Can delete site 18 delete_site |
| 4965 | 67 Can add site role 19 add_siterole |
| 4966 | 68 Can change site role 19 change_siterole |
| 4967 | 69 Can delete site role 19 delete_siterole |
| 4968 | 70 Can add site privilege 20 add_siteprivilege |
| 4969 | 71 Can change site privilege 20 change_siteprivilege |
| 4970 | 72 Can delete site privilege 20 delete_siteprivilege |
| 4971 | 73 Can add deployment 21 add_deployment |
| 4972 | 74 Can change deployment 21 change_deployment |
| 4973 | 75 Can delete deployment 21 delete_deployment |
| 4974 | 76 Can add deployment role 22 add_deploymentrole |
| 4975 | 77 Can change deployment role 22 change_deploymentrole |
| 4976 | 78 Can delete deployment role 22 delete_deploymentrole |
| 4977 | 79 Can add deployment privilege 23 add_deploymentprivilege |
| 4978 | 80 Can change deployment privilege 23 change_deploymentprivilege |
| 4979 | 81 Can delete deployment privilege 23 delete_deploymentprivilege |
| 4980 | 82 Can add controller role 24 add_controllerrole |
| 4981 | 83 Can change controller role 24 change_controllerrole |
| 4982 | 84 Can delete controller role 24 delete_controllerrole |
| 4983 | 85 Can add controller 25 add_controller |
| 4984 | 86 Can change controller 25 change_controller |
| 4985 | 87 Can delete controller 25 delete_controller |
| 4986 | 88 Can add site deployment 26 add_sitedeployment |
| 4987 | 89 Can change site deployment 26 change_sitedeployment |
| 4988 | 90 Can delete site deployment 26 delete_sitedeployment |
| 4989 | 91 Can add controller site 27 add_controllersite |
| 4990 | 92 Can change controller site 27 change_controllersite |
| 4991 | 93 Can delete controller site 27 delete_controllersite |
| 4992 | 94 Can add diag 28 add_diag |
| 4993 | 95 Can change diag 28 change_diag |
| 4994 | 96 Can delete diag 28 delete_diag |
| 4995 | 97 Can add dashboard view 29 add_dashboardview |
| 4996 | 98 Can change dashboard view 29 change_dashboardview |
| 4997 | 99 Can delete dashboard view 29 delete_dashboardview |
| 4998 | 100 Can add controller dashboard view 30 add_controllerdashboardview |
| 4999 | 101 Can change controller dashboard view 30 change_controllerdashboardview |
| 5000 | 102 Can delete controller dashboard view 30 delete_controllerdashboardview |
| 5001 | 103 Can add user 31 add_user |
| 5002 | 104 Can change user 31 change_user |
| 5003 | 105 Can delete user 31 delete_user |
| 5004 | 106 Can add user dashboard view 32 add_userdashboardview |
| 5005 | 107 Can change user dashboard view 32 change_userdashboardview |
| 5006 | 108 Can delete user dashboard view 32 delete_userdashboardview |
| 5007 | 109 Can add service class 33 add_serviceclass |
| 5008 | 110 Can change service class 33 change_serviceclass |
| 5009 | 111 Can delete service class 33 delete_serviceclass |
| 5010 | 112 Can add flavor 34 add_flavor |
| 5011 | 113 Can change flavor 34 change_flavor |
| 5012 | 114 Can delete flavor 34 delete_flavor |
| 5013 | 115 Can add image 35 add_image |
| 5014 | 116 Can change image 35 change_image |
| 5015 | 117 Can delete image 35 delete_image |
| 5016 | 118 Can add image deployments 36 add_imagedeployments |
| 5017 | 119 Can change image deployments 36 change_imagedeployments |
| 5018 | 120 Can delete image deployments 36 delete_imagedeployments |
| 5019 | 121 Can add controller images 37 add_controllerimages |
| 5020 | 122 Can change controller images 37 change_controllerimages |
| 5021 | 123 Can delete controller images 37 delete_controllerimages |
| 5022 | 124 Can add slice 38 add_slice |
| 5023 | 125 Can change slice 38 change_slice |
| 5024 | 126 Can delete slice 38 delete_slice |
| 5025 | 127 Can add slice role 39 add_slicerole |
| 5026 | 128 Can change slice role 39 change_slicerole |
| 5027 | 129 Can delete slice role 39 delete_slicerole |
| 5028 | 130 Can add slice privilege 40 add_sliceprivilege |
| 5029 | 131 Can change slice privilege 40 change_sliceprivilege |
| 5030 | 132 Can delete slice privilege 40 delete_sliceprivilege |
| 5031 | 133 Can add controller slice 41 add_controllerslice |
| 5032 | 134 Can change controller slice 41 change_controllerslice |
| 5033 | 135 Can delete controller slice 41 delete_controllerslice |
| 5034 | 136 Can add controller user 42 add_controlleruser |
| 5035 | 137 Can change controller user 42 change_controlleruser |
| 5036 | 138 Can delete controller user 42 delete_controlleruser |
| 5037 | 139 Can add controller site privilege 43 add_controllersiteprivilege |
| 5038 | 140 Can change controller site privilege 43 change_controllersiteprivilege |
| 5039 | 141 Can delete controller site privilege 43 delete_controllersiteprivilege |
| 5040 | 142 Can add controller slice privilege 44 add_controllersliceprivilege |
| 5041 | 143 Can change controller slice privilege 44 change_controllersliceprivilege |
| 5042 | 144 Can delete controller slice privilege 44 delete_controllersliceprivilege |
| 5043 | 145 Can add service resource 45 add_serviceresource |
| 5044 | 146 Can change service resource 45 change_serviceresource |
| 5045 | 147 Can delete service resource 45 delete_serviceresource |
| 5046 | 148 Can add user credential 46 add_usercredential |
| 5047 | 149 Can change user credential 46 change_usercredential |
| 5048 | 150 Can delete user credential 46 delete_usercredential |
| 5049 | 151 Can add site credential 47 add_sitecredential |
| 5050 | 152 Can change site credential 47 change_sitecredential |
| 5051 | 153 Can delete site credential 47 delete_sitecredential |
| 5052 | 154 Can add slice credential 48 add_slicecredential |
| 5053 | 155 Can change slice credential 48 change_slicecredential |
| 5054 | 156 Can delete slice credential 48 delete_slicecredential |
| 5055 | 157 Can add controller credential 49 add_controllercredential |
| 5056 | 158 Can change controller credential 49 change_controllercredential |
| 5057 | 159 Can delete controller credential 49 delete_controllercredential |
| 5058 | 160 Can add node 50 add_node |
| 5059 | 161 Can change node 50 change_node |
| 5060 | 162 Can delete node 50 delete_node |
| 5061 | 163 Can add node label 51 add_nodelabel |
| 5062 | 164 Can change node label 51 change_nodelabel |
| 5063 | 165 Can delete node label 51 delete_nodelabel |
| 5064 | 166 Can add slice tag 52 add_slicetag |
| 5065 | 167 Can change slice tag 52 change_slicetag |
| 5066 | 168 Can delete slice tag 52 delete_slicetag |
| 5067 | 169 Can add instance 53 add_instance |
| 5068 | 170 Can change instance 53 change_instance |
| 5069 | 171 Can delete instance 53 delete_instance |
| 5070 | 172 Can add reservation 54 add_reservation |
| 5071 | 173 Can change reservation 54 change_reservation |
| 5072 | 174 Can delete reservation 54 delete_reservation |
| 5073 | 175 Can add reserved resource 55 add_reservedresource |
| 5074 | 176 Can change reserved resource 55 change_reservedresource |
| 5075 | 177 Can delete reserved resource 55 delete_reservedresource |
| 5076 | 178 Can add network template 56 add_networktemplate |
| 5077 | 179 Can change network template 56 change_networktemplate |
| 5078 | 180 Can delete network template 56 delete_networktemplate |
| 5079 | 181 Can add network 57 add_network |
| 5080 | 182 Can change network 57 change_network |
| 5081 | 183 Can delete network 57 delete_network |
| 5082 | 184 Can add controller network 58 add_controllernetwork |
| 5083 | 185 Can change controller network 58 change_controllernetwork |
| 5084 | 186 Can delete controller network 58 delete_controllernetwork |
| 5085 | 187 Can add network slice 59 add_networkslice |
| 5086 | 188 Can change network slice 59 change_networkslice |
| 5087 | 189 Can delete network slice 59 delete_networkslice |
| 5088 | 190 Can add port 60 add_port |
| 5089 | 191 Can change port 60 change_port |
| 5090 | 192 Can delete port 60 delete_port |
| 5091 | 193 Can add router 61 add_router |
| 5092 | 194 Can change router 61 change_router |
| 5093 | 195 Can delete router 61 delete_router |
| 5094 | 196 Can add network parameter type 62 add_networkparametertype |
| 5095 | 197 Can change network parameter type 62 change_networkparametertype |
| 5096 | 198 Can delete network parameter type 62 delete_networkparametertype |
| 5097 | 199 Can add network parameter 63 add_networkparameter |
| 5098 | 200 Can change network parameter 63 change_networkparameter |
| 5099 | 201 Can delete network parameter 63 delete_networkparameter |
| 5100 | 202 Can add address pool 64 add_addresspool |
| 5101 | 203 Can change address pool 64 change_addresspool |
| 5102 | 204 Can delete address pool 64 delete_addresspool |
| 5103 | 205 Can add account 65 add_account |
| 5104 | 206 Can change account 65 change_account |
| 5105 | 207 Can delete account 65 delete_account |
| 5106 | 208 Can add invoice 66 add_invoice |
| 5107 | 209 Can change invoice 66 change_invoice |
| 5108 | 210 Can delete invoice 66 delete_invoice |
| 5109 | 211 Can add usable object 67 add_usableobject |
| 5110 | 212 Can change usable object 67 change_usableobject |
| 5111 | 213 Can delete usable object 67 delete_usableobject |
| 5112 | 214 Can add payment 68 add_payment |
| 5113 | 215 Can change payment 68 change_payment |
| 5114 | 216 Can delete payment 68 delete_payment |
| 5115 | 217 Can add charge 69 add_charge |
| 5116 | 218 Can change charge 69 change_charge |
| 5117 | 219 Can delete charge 69 delete_charge |
| 5118 | 220 Can add program 70 add_program |
| 5119 | 221 Can change program 70 change_program |
| 5120 | 222 Can delete program 70 delete_program |
| 5121 | 223 Can add HPC Service 75 add_hpcservice |
| 5122 | 224 Can change HPC Service 75 change_hpcservice |
| 5123 | 225 Can delete HPC Service 75 delete_hpcservice |
| 5124 | 226 Can add service provider 76 add_serviceprovider |
| 5125 | 227 Can change service provider 76 change_serviceprovider |
| 5126 | 228 Can delete service provider 76 delete_serviceprovider |
| 5127 | 229 Can add content provider 77 add_contentprovider |
| 5128 | 230 Can change content provider 77 change_contentprovider |
| 5129 | 231 Can delete content provider 77 delete_contentprovider |
| 5130 | 232 Can add origin server 78 add_originserver |
| 5131 | 233 Can change origin server 78 change_originserver |
| 5132 | 234 Can delete origin server 78 delete_originserver |
| 5133 | 235 Can add cdn prefix 79 add_cdnprefix |
| 5134 | 236 Can change cdn prefix 79 change_cdnprefix |
| 5135 | 237 Can delete cdn prefix 79 delete_cdnprefix |
| 5136 | 238 Can add access map 80 add_accessmap |
| 5137 | 239 Can change access map 80 change_accessmap |
| 5138 | 240 Can delete access map 80 delete_accessmap |
| 5139 | 241 Can add site map 81 add_sitemap |
| 5140 | 242 Can change site map 81 change_sitemap |
| 5141 | 243 Can delete site map 81 delete_sitemap |
| 5142 | 244 Can add hpc health check 82 add_hpchealthcheck |
| 5143 | 245 Can change hpc health check 82 change_hpchealthcheck |
| 5144 | 246 Can delete hpc health check 82 delete_hpchealthcheck |
| 5145 | 247 Can add cord subscriber root 11 add_cordsubscriberroot |
| 5146 | 248 Can change cord subscriber root 11 change_cordsubscriberroot |
| 5147 | 249 Can delete cord subscriber root 11 delete_cordsubscriberroot |
| 5148 | 250 Can add vOLT Service 7 add_voltservice |
| 5149 | 251 Can change vOLT Service 7 change_voltservice |
| 5150 | 252 Can delete vOLT Service 7 delete_voltservice |
| 5151 | 253 Can add volt tenant 12 add_volttenant |
| 5152 | 254 Can change volt tenant 12 change_volttenant |
| 5153 | 255 Can delete volt tenant 12 delete_volttenant |
| 5154 | 256 Can add vSG Service 7 add_vsgservice |
| 5155 | 257 Can change vSG Service 7 change_vsgservice |
| 5156 | 258 Can delete vSG Service 7 delete_vsgservice |
| 5157 | 259 Can add vsg tenant 12 add_vsgtenant |
| 5158 | 260 Can change vsg tenant 12 change_vsgtenant |
| 5159 | 261 Can delete vsg tenant 12 delete_vsgtenant |
| 5160 | 262 Can add vBNG Service 7 add_vbngservice |
| 5161 | 263 Can change vBNG Service 7 change_vbngservice |
| 5162 | 264 Can delete vBNG Service 7 delete_vbngservice |
| 5163 | 265 Can add vbng tenant 12 add_vbngtenant |
| 5164 | 266 Can change vbng tenant 12 change_vbngtenant |
| 5165 | 267 Can delete vbng tenant 12 delete_vbngtenant |
| 5166 | 274 Can add ONOS Service 7 add_onosservice |
| 5167 | 275 Can change ONOS Service 7 change_onosservice |
| 5168 | 276 Can delete ONOS Service 7 delete_onosservice |
| 5169 | 277 Can add onos app 12 add_onosapp |
| 5170 | 278 Can change onos app 12 change_onosapp |
| 5171 | 279 Can delete onos app 12 delete_onosapp |
| 5172 | 280 Can add Ceilometer Service 7 add_ceilometerservice |
| 5173 | 281 Can change Ceilometer Service 7 change_ceilometerservice |
| 5174 | 282 Can delete Ceilometer Service 7 delete_ceilometerservice |
| 5175 | 283 Can add monitoring channel 12 add_monitoringchannel |
| 5176 | 284 Can change monitoring channel 12 change_monitoringchannel |
| 5177 | 285 Can delete monitoring channel 12 delete_monitoringchannel |
| 5178 | 286 Can add sFlow Collection Service 7 add_sflowservice |
| 5179 | 287 Can change sFlow Collection Service 7 change_sflowservice |
| 5180 | 288 Can delete sFlow Collection Service 7 delete_sflowservice |
| 5181 | 289 Can add s flow tenant 12 add_sflowtenant |
| 5182 | 290 Can change s flow tenant 12 change_sflowtenant |
| 5183 | 291 Can delete s flow tenant 12 delete_sflowtenant |
| 5184 | 292 Can add Request Router Service 98 add_requestrouterservice |
| 5185 | 293 Can change Request Router Service 98 change_requestrouterservice |
| 5186 | 294 Can delete Request Router Service 98 delete_requestrouterservice |
| 5187 | 295 Can add service map 99 add_servicemap |
| 5188 | 296 Can change service map 99 change_servicemap |
| 5189 | 297 Can delete service map 99 delete_servicemap |
| 5190 | 298 Can add Syndicate Service 100 add_syndicateservice |
| 5191 | 299 Can change Syndicate Service 100 change_syndicateservice |
| 5192 | 300 Can delete Syndicate Service 100 delete_syndicateservice |
| 5193 | 301 Can add syndicate principal 101 add_syndicateprincipal |
| 5194 | 302 Can change syndicate principal 101 change_syndicateprincipal |
| 5195 | 303 Can delete syndicate principal 101 delete_syndicateprincipal |
| 5196 | 304 Can add volume 102 add_volume |
| 5197 | 305 Can change volume 102 change_volume |
| 5198 | 306 Can delete volume 102 delete_volume |
| 5199 | 307 Can add volume access right 103 add_volumeaccessright |
| 5200 | 308 Can change volume access right 103 change_volumeaccessright |
| 5201 | 309 Can delete volume access right 103 delete_volumeaccessright |
| 5202 | 310 Can add slice secret 104 add_slicesecret |
| 5203 | 311 Can change slice secret 104 change_slicesecret |
| 5204 | 312 Can delete slice secret 104 delete_slicesecret |
| 5205 | 313 Can add volume slice 105 add_volumeslice |
| 5206 | 314 Can change volume slice 105 change_volumeslice |
| 5207 | 315 Can delete volume slice 105 delete_volumeslice |
| 5208 | 316 Can add vTR Service 7 add_vtrservice |
| 5209 | 317 Can change vTR Service 7 change_vtrservice |
| 5210 | 318 Can delete vTR Service 7 delete_vtrservice |
| 5211 | 319 Can add vtr tenant 12 add_vtrtenant |
| 5212 | 320 Can change vtr tenant 12 change_vtrtenant |
| 5213 | 321 Can delete vtr tenant 12 delete_vtrtenant |
| 5214 | \. |
| 5215 | |
| 5216 | |
| 5217 | -- |
| 5218 | -- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5219 | -- |
| 5220 | |
| 5221 | SELECT pg_catalog.setval('auth_permission_id_seq', 321, true); |
| 5222 | |
| 5223 | |
| 5224 | -- |
| 5225 | -- Data for Name: core_account; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5226 | -- |
| 5227 | |
| 5228 | COPY core_account (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, site_id) FROM stdin; |
| 5229 | \. |
| 5230 | |
| 5231 | |
| 5232 | -- |
| 5233 | -- Name: core_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5234 | -- |
| 5235 | |
| 5236 | SELECT pg_catalog.setval('core_account_id_seq', 1, false); |
| 5237 | |
| 5238 | |
| 5239 | -- |
| 5240 | -- Data for Name: core_addresspool; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5241 | -- |
| 5242 | |
| 5243 | COPY core_addresspool (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, addresses, inuse) FROM stdin; |
| 5244 | \. |
| 5245 | |
| 5246 | |
| 5247 | -- |
| 5248 | -- Name: core_addresspool_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5249 | -- |
| 5250 | |
| 5251 | SELECT pg_catalog.setval('core_addresspool_id_seq', 1, false); |
| 5252 | |
| 5253 | |
| 5254 | -- |
| 5255 | -- Data for Name: core_charge; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5256 | -- |
| 5257 | |
| 5258 | COPY core_charge (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, kind, state, date, amount, "coreHours", account_id, invoice_id, object_id, slice_id) FROM stdin; |
| 5259 | \. |
| 5260 | |
| 5261 | |
| 5262 | -- |
| 5263 | -- Name: core_charge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5264 | -- |
| 5265 | |
| 5266 | SELECT pg_catalog.setval('core_charge_id_seq', 1, false); |
| 5267 | |
| 5268 | |
| 5269 | -- |
| 5270 | -- Data for Name: core_controller; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5271 | -- |
| 5272 | |
| 5273 | COPY core_controller (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, backend_type, version, auth_url, admin_user, admin_password, admin_tenant, domain, rabbit_host, rabbit_user, rabbit_password, deployment_id) FROM stdin; |
| 5274 | 1 2016-04-05 17:41:57.870164+00 2016-04-05 17:41:57.870189+00 \N \N {} 0 - Provisioning in progress f f f t CloudLab OpenStack Juno http://sample/v2 admin adminpassword admin Default \N \N \N 1 |
| 5275 | \. |
| 5276 | |
| 5277 | |
| 5278 | -- |
| 5279 | -- Name: core_controller_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5280 | -- |
| 5281 | |
| 5282 | SELECT pg_catalog.setval('core_controller_id_seq', 1, true); |
| 5283 | |
| 5284 | |
| 5285 | -- |
| 5286 | -- Data for Name: core_controllercredential; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5287 | -- |
| 5288 | |
| 5289 | COPY core_controllercredential (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, key_id, enc_value, controller_id) FROM stdin; |
| 5290 | \. |
| 5291 | |
| 5292 | |
| 5293 | -- |
| 5294 | -- Name: core_controllercredential_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5295 | -- |
| 5296 | |
| 5297 | SELECT pg_catalog.setval('core_controllercredential_id_seq', 1, false); |
| 5298 | |
| 5299 | |
| 5300 | -- |
| 5301 | -- Data for Name: core_controllerdashboardview; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5302 | -- |
| 5303 | |
| 5304 | COPY core_controllerdashboardview (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, enabled, url, controller_id, "dashboardView_id") FROM stdin; |
| 5305 | \. |
| 5306 | |
| 5307 | |
| 5308 | -- |
| 5309 | -- Name: core_controllerdashboardview_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5310 | -- |
| 5311 | |
| 5312 | SELECT pg_catalog.setval('core_controllerdashboardview_id_seq', 1, false); |
| 5313 | |
| 5314 | |
| 5315 | -- |
| 5316 | -- Data for Name: core_controllerimages; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5317 | -- |
| 5318 | |
| 5319 | COPY core_controllerimages (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, glance_image_id, controller_id, image_id) FROM stdin; |
| 5320 | \. |
| 5321 | |
| 5322 | |
| 5323 | -- |
| 5324 | -- Name: core_controllerimages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5325 | -- |
| 5326 | |
| 5327 | SELECT pg_catalog.setval('core_controllerimages_id_seq', 1, false); |
| 5328 | |
| 5329 | |
| 5330 | -- |
| 5331 | -- Data for Name: core_controllernetwork; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5332 | -- |
| 5333 | |
| 5334 | COPY core_controllernetwork (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, net_id, router_id, subnet_id, subnet, controller_id, network_id) FROM stdin; |
| 5335 | \. |
| 5336 | |
| 5337 | |
| 5338 | -- |
| 5339 | -- Name: core_controllernetwork_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5340 | -- |
| 5341 | |
| 5342 | SELECT pg_catalog.setval('core_controllernetwork_id_seq', 1, false); |
| 5343 | |
| 5344 | |
| 5345 | -- |
| 5346 | -- Data for Name: core_controllerrole; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5347 | -- |
| 5348 | |
| 5349 | COPY core_controllerrole (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role) FROM stdin; |
| 5350 | \. |
| 5351 | |
| 5352 | |
| 5353 | -- |
| 5354 | -- Name: core_controllerrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5355 | -- |
| 5356 | |
| 5357 | SELECT pg_catalog.setval('core_controllerrole_id_seq', 1, false); |
| 5358 | |
| 5359 | |
| 5360 | -- |
| 5361 | -- Data for Name: core_controllersite; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5362 | -- |
| 5363 | |
| 5364 | COPY core_controllersite (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, tenant_id, controller_id, site_id) FROM stdin; |
| 5365 | \. |
| 5366 | |
| 5367 | |
| 5368 | -- |
| 5369 | -- Name: core_controllersite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5370 | -- |
| 5371 | |
| 5372 | SELECT pg_catalog.setval('core_controllersite_id_seq', 1, false); |
| 5373 | |
| 5374 | |
| 5375 | -- |
| 5376 | -- Data for Name: core_controllersiteprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5377 | -- |
| 5378 | |
| 5379 | COPY core_controllersiteprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_id, controller_id, site_privilege_id) FROM stdin; |
| 5380 | \. |
| 5381 | |
| 5382 | |
| 5383 | -- |
| 5384 | -- Name: core_controllersiteprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5385 | -- |
| 5386 | |
| 5387 | SELECT pg_catalog.setval('core_controllersiteprivilege_id_seq', 1, false); |
| 5388 | |
| 5389 | |
| 5390 | -- |
| 5391 | -- Data for Name: core_controllerslice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5392 | -- |
| 5393 | |
| 5394 | COPY core_controllerslice (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, tenant_id, controller_id, slice_id) FROM stdin; |
| 5395 | \. |
| 5396 | |
| 5397 | |
| 5398 | -- |
| 5399 | -- Name: core_controllerslice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5400 | -- |
| 5401 | |
| 5402 | SELECT pg_catalog.setval('core_controllerslice_id_seq', 1, false); |
| 5403 | |
| 5404 | |
| 5405 | -- |
| 5406 | -- Data for Name: core_controllersliceprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5407 | -- |
| 5408 | |
| 5409 | COPY core_controllersliceprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_id, controller_id, slice_privilege_id) FROM stdin; |
| 5410 | \. |
| 5411 | |
| 5412 | |
| 5413 | -- |
| 5414 | -- Name: core_controllersliceprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5415 | -- |
| 5416 | |
| 5417 | SELECT pg_catalog.setval('core_controllersliceprivilege_id_seq', 1, false); |
| 5418 | |
| 5419 | |
| 5420 | -- |
| 5421 | -- Data for Name: core_controlleruser; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5422 | -- |
| 5423 | |
| 5424 | COPY core_controlleruser (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, kuser_id, controller_id, user_id) FROM stdin; |
| 5425 | \. |
| 5426 | |
| 5427 | |
| 5428 | -- |
| 5429 | -- Name: core_controlleruser_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5430 | -- |
| 5431 | |
| 5432 | SELECT pg_catalog.setval('core_controlleruser_id_seq', 1, false); |
| 5433 | |
| 5434 | |
| 5435 | -- |
| 5436 | -- Data for Name: core_dashboardview; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5437 | -- |
| 5438 | |
| 5439 | COPY core_dashboardview (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, url, enabled) FROM stdin; |
| 5440 | --1 2015-02-17 22:06:38.953+00 2015-02-17 22:06:38.953+00 \N \N {} 0 - Provisioning in progress f f f f xsh template:xsh t |
| 5441 | 2 2015-02-17 22:06:39.011+00 2015-02-17 22:06:39.011+00 \N \N {} 0 - Provisioning in progress f f f f Customize template:customize t |
| 5442 | 3 2015-02-17 22:06:39.069+00 2015-02-17 22:06:39.244+00 \N \N {} 0 - Provisioning in progress f f f f Tenant template:xosTenant t |
| 5443 | 4 2015-02-17 22:06:39.302+00 2015-02-17 22:06:39.302+00 \N \N {} 0 - Provisioning in progress f f f f Developer template:xosDeveloper_datatables t |
| 5444 | 5 2016-04-05 17:42:11.341605+00 2016-04-05 17:42:11.341634+00 \N \N {} 0 - Provisioning in progress f f f f Customer Care template:xosDiagnostic t |
| 5445 | 6 2016-04-05 18:46:36.638199+00 2016-04-05 18:46:36.638233+00 \N \N {} 0 - Provisioning in progress f f f f truckroll template:xosTruckroll t |
| 5446 | \. |
| 5447 | |
| 5448 | |
| 5449 | -- |
| 5450 | -- Data for Name: core_dashboardview_deployments; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5451 | -- |
| 5452 | |
| 5453 | COPY core_dashboardview_deployments (id, dashboardview_id, deployment_id) FROM stdin; |
| 5454 | 1 3 1 |
| 5455 | \. |
| 5456 | |
| 5457 | |
| 5458 | -- |
| 5459 | -- Name: core_dashboardview_deployments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5460 | -- |
| 5461 | |
| 5462 | SELECT pg_catalog.setval('core_dashboardview_deployments_id_seq', 1, true); |
| 5463 | |
| 5464 | |
| 5465 | -- |
| 5466 | -- Name: core_dashboardview_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5467 | -- |
| 5468 | |
| 5469 | SELECT pg_catalog.setval('core_dashboardview_id_seq', 6, true); |
| 5470 | |
| 5471 | |
| 5472 | -- |
| 5473 | -- Data for Name: core_deployment; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5474 | -- |
| 5475 | |
| 5476 | COPY core_deployment (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, "accessControl") FROM stdin; |
| 5477 | 1 2015-02-17 22:06:37.789+00 2016-04-05 17:41:57.865591+00 \N \N {} 0 - Provisioning in progress f f f t MyDeployment allow all |
| 5478 | \. |
| 5479 | |
| 5480 | |
| 5481 | -- |
| 5482 | -- Name: core_deployment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5483 | -- |
| 5484 | |
| 5485 | SELECT pg_catalog.setval('core_deployment_id_seq', 1, true); |
| 5486 | |
| 5487 | |
| 5488 | -- |
| 5489 | -- Data for Name: core_deploymentprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5490 | -- |
| 5491 | |
| 5492 | COPY core_deploymentprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, deployment_id, role_id, user_id) FROM stdin; |
| 5493 | \. |
| 5494 | |
| 5495 | |
| 5496 | -- |
| 5497 | -- Name: core_deploymentprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5498 | -- |
| 5499 | |
| 5500 | SELECT pg_catalog.setval('core_deploymentprivilege_id_seq', 1, false); |
| 5501 | |
| 5502 | |
| 5503 | -- |
| 5504 | -- Data for Name: core_deploymentrole; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5505 | -- |
| 5506 | |
| 5507 | COPY core_deploymentrole (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role) FROM stdin; |
| 5508 | 1 2015-02-17 22:06:38.894+00 2015-02-17 22:06:38.894+00 \N \N {} 0 - Provisioning in progress f f f f admin |
| 5509 | \. |
| 5510 | |
| 5511 | |
| 5512 | -- |
| 5513 | -- Name: core_deploymentrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5514 | -- |
| 5515 | |
| 5516 | SELECT pg_catalog.setval('core_deploymentrole_id_seq', 1, true); |
| 5517 | |
| 5518 | |
| 5519 | -- |
| 5520 | -- Data for Name: core_diag; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5521 | -- |
| 5522 | |
| 5523 | COPY core_diag (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name) FROM stdin; |
| 5524 | \. |
| 5525 | |
| 5526 | |
| 5527 | -- |
| 5528 | -- Name: core_diag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5529 | -- |
| 5530 | |
| 5531 | SELECT pg_catalog.setval('core_diag_id_seq', 1, false); |
| 5532 | |
| 5533 | |
| 5534 | -- |
| 5535 | -- Data for Name: core_flavor; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5536 | -- |
| 5537 | |
| 5538 | COPY core_flavor (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, flavor, "order", "default") FROM stdin; |
| 5539 | 1 2015-02-17 22:06:38.095+00 2015-02-17 22:06:38.236+00 \N \N {} 0 - Provisioning in progress f f f t m1.small \N m1.small 0 f |
| 5540 | 2 2015-02-17 22:06:38.287+00 2015-02-17 22:06:38.394+00 \N \N {} 0 - Provisioning in progress f f f t m1.medium \N m1.medium 0 f |
| 5541 | 3 2015-02-17 22:06:38.445+00 2015-02-17 22:06:38.561+00 \N \N {} 0 - Provisioning in progress f f f t m1.large \N m1.large 0 f |
| 5542 | \. |
| 5543 | |
| 5544 | |
| 5545 | -- |
| 5546 | -- Data for Name: core_flavor_deployments; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5547 | -- |
| 5548 | |
| 5549 | COPY core_flavor_deployments (id, flavor_id, deployment_id) FROM stdin; |
| 5550 | 1 1 1 |
| 5551 | 2 2 1 |
| 5552 | 3 3 1 |
| 5553 | \. |
| 5554 | |
| 5555 | |
| 5556 | -- |
| 5557 | -- Name: core_flavor_deployments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5558 | -- |
| 5559 | |
| 5560 | SELECT pg_catalog.setval('core_flavor_deployments_id_seq', 3, true); |
| 5561 | |
| 5562 | |
| 5563 | -- |
| 5564 | -- Name: core_flavor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5565 | -- |
| 5566 | |
| 5567 | SELECT pg_catalog.setval('core_flavor_id_seq', 3, true); |
| 5568 | |
| 5569 | |
| 5570 | -- |
| 5571 | -- Data for Name: core_image; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5572 | -- |
| 5573 | |
| 5574 | COPY core_image (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, kind, disk_format, container_format, path, tag) FROM stdin; |
| 5575 | 1 2016-04-05 17:41:57.84418+00 2016-04-05 17:41:57.844213+00 \N \N {} 0 - Provisioning in progress f f f f trusty-server-multi-nic vm QCOW2 BARE \N \N |
| 5576 | 2 2016-04-05 17:42:10.875232+00 2016-04-05 17:42:10.87526+00 \N \N {} 0 - Provisioning in progress f f f f docker-vcpe container na na andybavier/docker-vcpe develop |
| 5577 | \. |
| 5578 | |
| 5579 | |
| 5580 | -- |
| 5581 | -- Name: core_image_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5582 | -- |
| 5583 | |
| 5584 | SELECT pg_catalog.setval('core_image_id_seq', 2, true); |
| 5585 | |
| 5586 | |
| 5587 | -- |
| 5588 | -- Data for Name: core_imagedeployments; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5589 | -- |
| 5590 | |
| 5591 | COPY core_imagedeployments (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, deployment_id, image_id) FROM stdin; |
| 5592 | 1 2016-04-05 17:41:57.855026+00 2016-04-05 17:41:57.855053+00 \N \N {} 0 - Provisioning in progress f f f f 1 1 |
| 5593 | \. |
| 5594 | |
| 5595 | |
| 5596 | -- |
| 5597 | -- Name: core_imagedeployments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5598 | -- |
| 5599 | |
| 5600 | SELECT pg_catalog.setval('core_imagedeployments_id_seq', 1, true); |
| 5601 | |
| 5602 | |
| 5603 | -- |
| 5604 | -- Data for Name: core_instance; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5605 | -- |
| 5606 | |
| 5607 | COPY core_instance (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, instance_id, instance_uuid, name, instance_name, ip, "numberCores", "userData", isolation, volumes, creator_id, deployment_id, flavor_id, image_id, node_id, parent_id, slice_id) FROM stdin; |
| 5608 | 1 2016-04-05 17:42:11.041143+00 2016-04-05 17:42:11.041177+00 \N \N {} 0 - Provisioning in progress f f f f \N \N mysite_vcpe \N \N 0 \N vm /etc/dnsmasq.d,/etc/ufw 1 1 1 1 1 \N 1 |
| 5609 | 2 2016-04-05 17:42:11.143845+00 2016-04-05 17:42:11.505705+00 \N \N {} 0 - Provisioning in progress f f f f \N \N onos_app_1 \N \N 0 \N vm \N 1 1 1 1 2 \N 5 |
| 5610 | 3 2016-04-05 17:42:11.180193+00 2016-04-05 17:42:11.508623+00 \N \N {} 0 - Provisioning in progress f f f f \N \N client1 \N \N 0 \N vm \N 1 1 1 1 1 \N 4 |
| 5611 | 4 2016-04-05 17:42:11.24868+00 2016-04-05 17:42:11.512938+00 \N \N {} 0 - Provisioning in progress f f f f \N \N onos_app_2 \N \N 0 \N vm \N 1 1 1 1 2 \N 6 |
| 5612 | 5 2016-04-05 17:42:11.32255+00 2016-04-05 17:42:11.516734+00 \N \N {} 0 - Provisioning in progress f f f f \N \N ovs_volt \N \N 0 \N vm \N 1 1 1 1 1 \N 3 |
| 5613 | 6 2016-04-05 17:42:11.336187+00 2016-04-05 17:42:11.519581+00 \N \N {} 0 - Provisioning in progress f f f f \N \N ovs_vbng \N \N 0 \N vm \N 1 1 1 1 2 \N 2 |
| 5614 | \. |
| 5615 | |
| 5616 | |
| 5617 | -- |
| 5618 | -- Name: core_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5619 | -- |
| 5620 | |
| 5621 | SELECT pg_catalog.setval('core_instance_id_seq', 6, true); |
| 5622 | |
| 5623 | |
| 5624 | -- |
| 5625 | -- Data for Name: core_invoice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5626 | -- |
| 5627 | |
| 5628 | COPY core_invoice (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, date, account_id) FROM stdin; |
| 5629 | \. |
| 5630 | |
| 5631 | |
| 5632 | -- |
| 5633 | -- Name: core_invoice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5634 | -- |
| 5635 | |
| 5636 | SELECT pg_catalog.setval('core_invoice_id_seq', 1, false); |
| 5637 | |
| 5638 | |
| 5639 | -- |
| 5640 | -- Data for Name: core_network; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5641 | -- |
| 5642 | |
| 5643 | COPY core_network (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, subnet, ports, labels, guaranteed_bandwidth, permit_all_slices, topology_parameters, controller_url, controller_parameters, network_id, router_id, subnet_id, autoconnect, owner_id, template_id) FROM stdin; |
| 5644 | 1 2016-04-05 17:42:10.926943+00 2016-04-05 17:42:10.926967+00 \N \N {} 0 - Provisioning in progress f f f f wan_network \N \N 0 t \N \N \N \N \N \N f 1 1 |
| 5645 | 2 2016-04-05 17:42:10.963196+00 2016-04-05 17:42:10.963223+00 \N \N {} 0 - Provisioning in progress f f f f lan_network \N \N 0 t \N \N \N \N \N \N f 1 1 |
| 5646 | 3 2016-04-05 17:42:11.188082+00 2016-04-05 17:42:11.188111+00 \N \N {} 0 - Provisioning in progress f f f f public_network \N \N 0 t \N \N \N \N \N \N f 2 5 |
| 5647 | 4 2016-04-05 17:42:11.370317+00 2016-04-05 17:42:11.370343+00 \N \N {} 0 - Provisioning in progress f f f f subscriber_network \N \N 0 t \N \N \N \N \N \N f 3 1 |
| 5648 | \. |
| 5649 | |
| 5650 | |
| 5651 | -- |
| 5652 | -- Name: core_network_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5653 | -- |
| 5654 | |
| 5655 | SELECT pg_catalog.setval('core_network_id_seq', 4, true); |
| 5656 | |
| 5657 | |
| 5658 | -- |
| 5659 | -- Data for Name: core_network_permitted_slices; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5660 | -- |
| 5661 | |
| 5662 | COPY core_network_permitted_slices (id, network_id, slice_id) FROM stdin; |
| 5663 | \. |
| 5664 | |
| 5665 | |
| 5666 | -- |
| 5667 | -- Name: core_network_permitted_slices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5668 | -- |
| 5669 | |
| 5670 | SELECT pg_catalog.setval('core_network_permitted_slices_id_seq', 1, false); |
| 5671 | |
| 5672 | |
| 5673 | -- |
| 5674 | -- Data for Name: core_networkparameter; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5675 | -- |
| 5676 | |
| 5677 | COPY core_networkparameter (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, value, object_id, content_type_id, parameter_id) FROM stdin; |
| 5678 | 1 2016-04-05 17:42:11.062812+00 2016-04-05 17:42:11.062838+00 \N \N {} 0 - Provisioning in progress f f f f 432 1 60 5 |
| 5679 | 2 2016-04-05 17:42:11.068024+00 2016-04-05 17:42:11.068048+00 \N \N {} 0 - Provisioning in progress f f f f 222 1 60 6 |
| 5680 | 3 2016-04-05 17:42:11.071633+00 2016-04-05 17:42:11.071645+00 \N \N {} 0 - Provisioning in progress f f f f stag-222 1 60 4 |
| 5681 | \. |
| 5682 | |
| 5683 | |
| 5684 | -- |
| 5685 | -- Name: core_networkparameter_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5686 | -- |
| 5687 | |
| 5688 | SELECT pg_catalog.setval('core_networkparameter_id_seq', 3, true); |
| 5689 | |
| 5690 | |
| 5691 | -- |
| 5692 | -- Data for Name: core_networkparametertype; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5693 | -- |
| 5694 | |
| 5695 | COPY core_networkparametertype (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description) FROM stdin; |
| 5696 | 1 2016-04-05 17:42:09.268578+00 2016-04-05 17:42:09.26861+00 \N \N {} 0 - Provisioning in progress f f f f bridge |
| 5697 | 2 2016-04-05 17:42:09.271808+00 2016-04-05 17:42:09.271835+00 \N \N {} 0 - Provisioning in progress f f f f next_hop |
| 5698 | 3 2016-04-05 17:42:09.274484+00 2016-04-05 17:42:09.27451+00 \N \N {} 0 - Provisioning in progress f f f f device |
| 5699 | 4 2016-04-05 17:42:09.276919+00 2016-04-05 17:42:09.276946+00 \N \N {} 0 - Provisioning in progress f f f f neutron_port_name |
| 5700 | 5 2016-04-05 17:42:09.279956+00 2016-04-05 17:42:09.279984+00 \N \N {} 0 - Provisioning in progress f f f f c_tag |
| 5701 | 6 2016-04-05 17:42:09.282047+00 2016-04-05 17:42:09.282073+00 \N \N {} 0 - Provisioning in progress f f f f s_tag |
| 5702 | \. |
| 5703 | |
| 5704 | |
| 5705 | -- |
| 5706 | -- Name: core_networkparametertype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5707 | -- |
| 5708 | |
| 5709 | SELECT pg_catalog.setval('core_networkparametertype_id_seq', 6, true); |
| 5710 | |
| 5711 | |
| 5712 | -- |
| 5713 | -- Data for Name: core_networkslice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5714 | -- |
| 5715 | |
| 5716 | COPY core_networkslice (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, network_id, slice_id) FROM stdin; |
| 5717 | 1 2016-04-05 17:42:10.934539+00 2016-04-05 17:42:10.93457+00 \N \N {} 0 - Provisioning in progress f f f f 1 1 |
| 5718 | 2 2016-04-05 17:42:10.948028+00 2016-04-05 17:42:10.948057+00 \N \N {} 0 - Provisioning in progress f f f f 1 2 |
| 5719 | 3 2016-04-05 17:42:10.967241+00 2016-04-05 17:42:10.967274+00 \N \N {} 0 - Provisioning in progress f f f f 2 1 |
| 5720 | 4 2016-04-05 17:42:10.971959+00 2016-04-05 17:42:10.971989+00 \N \N {} 0 - Provisioning in progress f f f f 2 3 |
| 5721 | 5 2016-04-05 17:42:11.193081+00 2016-04-05 17:42:11.193111+00 \N \N {} 0 - Provisioning in progress f f f f 3 2 |
| 5722 | 6 2016-04-05 17:42:11.37604+00 2016-04-05 17:42:11.376067+00 \N \N {} 0 - Provisioning in progress f f f f 4 3 |
| 5723 | 7 2016-04-05 17:42:11.380003+00 2016-04-05 17:42:11.380064+00 \N \N {} 0 - Provisioning in progress f f f f 4 4 |
| 5724 | \. |
| 5725 | |
| 5726 | |
| 5727 | -- |
| 5728 | -- Name: core_networkslice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5729 | -- |
| 5730 | |
| 5731 | SELECT pg_catalog.setval('core_networkslice_id_seq', 7, true); |
| 5732 | |
| 5733 | |
| 5734 | -- |
| 5735 | -- Data for Name: core_networktemplate; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5736 | -- |
| 5737 | |
| 5738 | COPY core_networktemplate (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, guaranteed_bandwidth, visibility, translation, access, shared_network_name, shared_network_id, topology_kind, controller_kind) FROM stdin; |
| 5739 | 3 2015-02-17 22:06:39.536+00 2015-02-17 22:06:39.536+00 \N \N {} 0 - Provisioning in progress f f f f Public dedicated IPv4 Connect a instance to the public network 0 public none \N ext-net \N bigswitch \N |
| 5740 | 2 2015-02-17 22:06:39.477+00 2016-04-05 17:41:57.912367+00 \N \N {} 0 - Provisioning in progress f f f f Public shared IPv4 Connect a instance to the public network 0 private NAT \N nat-net \N bigswitch \N |
| 5741 | 1 2015-02-17 22:06:39.419+00 2016-04-05 17:42:10.920852+00 \N \N {} 0 - Provisioning in progress f f f f Private A private virtual network 0 private none \N \N \N bigswitch \N |
| 5742 | 4 2016-04-05 17:42:10.950692+00 2016-04-05 17:42:10.950719+00 \N \N {} 0 - Provisioning in progress f f f f Private-Direct \N 0 private none direct \N \N bigswitch \N |
| 5743 | 5 2016-04-05 17:42:11.11517+00 2016-04-05 17:42:11.115197+00 \N \N {} 0 - Provisioning in progress f f f f Public network hack \N 0 private NAT \N tun0-net \N bigswitch \N |
| 5744 | 6 2016-04-05 17:42:11.309984+00 2016-04-05 17:42:11.310025+00 \N \N {} 0 - Provisioning in progress f f f f Private-Indirect \N 0 private none indirect \N \N bigswitch \N |
| 5745 | \. |
| 5746 | |
| 5747 | |
| 5748 | -- |
| 5749 | -- Name: core_networktemplate_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5750 | -- |
| 5751 | |
| 5752 | SELECT pg_catalog.setval('core_networktemplate_id_seq', 6, true); |
| 5753 | |
| 5754 | |
| 5755 | -- |
| 5756 | -- Data for Name: core_node; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5757 | -- |
| 5758 | |
| 5759 | COPY core_node (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, site_id, site_deployment_id) FROM stdin; |
| 5760 | 1 2016-04-05 17:41:57.898724+00 2016-04-05 17:41:57.898751+00 \N \N {} 0 - Provisioning in progress f f f t node2.opencloud.us 1 1 |
| 5761 | 2 2016-04-05 17:41:57.908261+00 2016-04-05 17:41:57.908283+00 \N \N {} 0 - Provisioning in progress f f f t node1.opencloud.us 1 1 |
| 5762 | \. |
| 5763 | |
| 5764 | |
| 5765 | -- |
| 5766 | -- Name: core_node_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5767 | -- |
| 5768 | |
| 5769 | SELECT pg_catalog.setval('core_node_id_seq', 2, true); |
| 5770 | |
| 5771 | |
| 5772 | -- |
| 5773 | -- Data for Name: core_nodelabel; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5774 | -- |
| 5775 | |
| 5776 | COPY core_nodelabel (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name) FROM stdin; |
| 5777 | \. |
| 5778 | |
| 5779 | |
| 5780 | -- |
| 5781 | -- Name: core_nodelabel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5782 | -- |
| 5783 | |
| 5784 | SELECT pg_catalog.setval('core_nodelabel_id_seq', 1, false); |
| 5785 | |
| 5786 | |
| 5787 | -- |
| 5788 | -- Data for Name: core_nodelabel_node; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5789 | -- |
| 5790 | |
| 5791 | COPY core_nodelabel_node (id, nodelabel_id, node_id) FROM stdin; |
| 5792 | \. |
| 5793 | |
| 5794 | |
| 5795 | -- |
| 5796 | -- Name: core_nodelabel_node_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5797 | -- |
| 5798 | |
| 5799 | SELECT pg_catalog.setval('core_nodelabel_node_id_seq', 1, false); |
| 5800 | |
| 5801 | |
| 5802 | -- |
| 5803 | -- Data for Name: core_payment; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5804 | -- |
| 5805 | |
| 5806 | COPY core_payment (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, amount, date, account_id) FROM stdin; |
| 5807 | \. |
| 5808 | |
| 5809 | |
| 5810 | -- |
| 5811 | -- Name: core_payment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5812 | -- |
| 5813 | |
| 5814 | SELECT pg_catalog.setval('core_payment_id_seq', 1, false); |
| 5815 | |
| 5816 | |
| 5817 | -- |
| 5818 | -- Data for Name: core_port; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5819 | -- |
| 5820 | |
| 5821 | COPY core_port (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, ip, port_id, mac, xos_created, instance_id, network_id) FROM stdin; |
| 5822 | 1 2016-04-05 17:42:11.049219+00 2016-04-05 17:42:11.073126+00 \N \N {} 0 - Provisioning in progress f f f f \N \N \N f 1 2 |
| 5823 | \. |
| 5824 | |
| 5825 | |
| 5826 | -- |
| 5827 | -- Name: core_port_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5828 | -- |
| 5829 | |
| 5830 | SELECT pg_catalog.setval('core_port_id_seq', 1, true); |
| 5831 | |
| 5832 | |
| 5833 | -- |
| 5834 | -- Data for Name: core_program; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5835 | -- |
| 5836 | |
| 5837 | COPY core_program (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, kind, command, contents, output, messages, status, owner_id) FROM stdin; |
| 5838 | \. |
| 5839 | |
| 5840 | |
| 5841 | -- |
| 5842 | -- Name: core_program_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5843 | -- |
| 5844 | |
| 5845 | SELECT pg_catalog.setval('core_program_id_seq', 1, false); |
| 5846 | |
| 5847 | |
| 5848 | -- |
| 5849 | -- Data for Name: core_project; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5850 | -- |
| 5851 | |
| 5852 | COPY core_project (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name) FROM stdin; |
| 5853 | \. |
| 5854 | |
| 5855 | |
| 5856 | -- |
| 5857 | -- Name: core_project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5858 | -- |
| 5859 | |
| 5860 | SELECT pg_catalog.setval('core_project_id_seq', 1, false); |
| 5861 | |
| 5862 | |
| 5863 | -- |
| 5864 | -- Data for Name: core_reservation; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5865 | -- |
| 5866 | |
| 5867 | COPY core_reservation (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, "startTime", duration, slice_id) FROM stdin; |
| 5868 | \. |
| 5869 | |
| 5870 | |
| 5871 | -- |
| 5872 | -- Name: core_reservation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5873 | -- |
| 5874 | |
| 5875 | SELECT pg_catalog.setval('core_reservation_id_seq', 1, false); |
| 5876 | |
| 5877 | |
| 5878 | -- |
| 5879 | -- Data for Name: core_reservedresource; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5880 | -- |
| 5881 | |
| 5882 | COPY core_reservedresource (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, quantity, instance_id, "reservationSet_id", resource_id) FROM stdin; |
| 5883 | \. |
| 5884 | |
| 5885 | |
| 5886 | -- |
| 5887 | -- Name: core_reservedresource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5888 | -- |
| 5889 | |
| 5890 | SELECT pg_catalog.setval('core_reservedresource_id_seq', 1, false); |
| 5891 | |
| 5892 | |
| 5893 | -- |
| 5894 | -- Data for Name: core_role; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5895 | -- |
| 5896 | |
| 5897 | COPY core_role (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_type, role, description, content_type_id) FROM stdin; |
| 5898 | \. |
| 5899 | |
| 5900 | |
| 5901 | -- |
| 5902 | -- Name: core_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5903 | -- |
| 5904 | |
| 5905 | SELECT pg_catalog.setval('core_role_id_seq', 1, false); |
| 5906 | |
| 5907 | |
| 5908 | -- |
| 5909 | -- Data for Name: core_router; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5910 | -- |
| 5911 | |
| 5912 | COPY core_router (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, owner_id) FROM stdin; |
| 5913 | \. |
| 5914 | |
| 5915 | |
| 5916 | -- |
| 5917 | -- Name: core_router_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5918 | -- |
| 5919 | |
| 5920 | SELECT pg_catalog.setval('core_router_id_seq', 1, false); |
| 5921 | |
| 5922 | |
| 5923 | -- |
| 5924 | -- Data for Name: core_router_networks; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5925 | -- |
| 5926 | |
| 5927 | COPY core_router_networks (id, router_id, network_id) FROM stdin; |
| 5928 | \. |
| 5929 | |
| 5930 | |
| 5931 | -- |
| 5932 | -- Name: core_router_networks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5933 | -- |
| 5934 | |
| 5935 | SELECT pg_catalog.setval('core_router_networks_id_seq', 1, false); |
| 5936 | |
| 5937 | |
| 5938 | -- |
| 5939 | -- Data for Name: core_router_permittedNetworks; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5940 | -- |
| 5941 | |
| 5942 | COPY "core_router_permittedNetworks" (id, router_id, network_id) FROM stdin; |
| 5943 | \. |
| 5944 | |
| 5945 | |
| 5946 | -- |
| 5947 | -- Name: core_router_permittedNetworks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5948 | -- |
| 5949 | |
| 5950 | SELECT pg_catalog.setval('"core_router_permittedNetworks_id_seq"', 1, false); |
| 5951 | |
| 5952 | |
| 5953 | -- |
| 5954 | -- Data for Name: core_service; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5955 | -- |
| 5956 | |
| 5957 | COPY core_service (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, description, enabled, kind, name, "versionNumber", published, view_url, icon_url, public_key, private_key_fn, service_specific_id, service_specific_attribute) FROM stdin; |
| 5958 | 1 2016-04-05 17:42:10.879967+00 2016-04-05 17:42:10.879992+00 \N \N {} 0 - Provisioning in progress f f f f \N t vBNG service_vbng t /admin/cord/vbngservice/$id$/ \N \N \N \N \N |
| 5959 | 2 2016-04-05 17:42:10.891972+00 2016-04-05 17:42:10.892005+00 \N \N {} 0 - Provisioning in progress f f f f \N t vCPE service_vsg t /admin/cord/vsgservice/$id$/ \N \N \N \N {"backend_network_label": "hpc_client"} |
| 5960 | 3 2016-04-05 17:42:10.974546+00 2016-04-05 17:42:10.97457+00 \N \N {} 0 - Provisioning in progress f f f f \N t vOLT service_volt t /admin/cord/voltservice/$id$/ \N \N \N \N \N |
| 5961 | 4 2016-04-05 17:42:11.119371+00 2016-04-05 17:42:11.119403+00 \N \N {} 0 - Provisioning in progress f f f f \N t onos service_ONOS_vBNG t /admin/onos/onosservice/$id$/ \N \N \N \N {"no_container": false} |
| 5962 | 5 2016-04-05 17:42:11.15434+00 2016-04-05 17:42:11.154366+00 \N \N {} 0 - Provisioning in progress f f f f \N t onos service_ONOS_vOLT t /admin/onos/onosservice/$id$/ \N \N \N \N {"no_container": false} |
| 5963 | 6 2016-04-05 17:42:11.183911+00 2016-04-05 17:42:11.183952+00 \N \N {} 0 - Provisioning in progress f f f f \N t vTR service_vtr t /admin/vtr/vtrservice/$id$/ \N \N \N \N \N |
| 5964 | \. |
| 5965 | |
| 5966 | |
| 5967 | -- |
| 5968 | -- Name: core_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5969 | -- |
| 5970 | |
| 5971 | SELECT pg_catalog.setval('core_service_id_seq', 6, true); |
| 5972 | |
| 5973 | |
| 5974 | -- |
| 5975 | -- Data for Name: core_serviceattribute; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5976 | -- |
| 5977 | |
| 5978 | COPY core_serviceattribute (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, value, service_id) FROM stdin; |
| 5979 | 1 2016-04-05 17:42:11.158787+00 2016-04-05 17:42:11.158814+00 \N \N {} 0 - Provisioning in progress f f f f rest_onos/v1/network/configuration/ {\n "devices" : {\n "of:0000000000000001" : {\n "accessDevice" : {\n "uplink" : "2",\n "vlan" : "222",\n "defaultVlan" : "1"\n },\n "basic" : {\n "driver" : "pmc-olt"\n }\n }\n }\n}\n 5 |
| 5980 | \. |
| 5981 | |
| 5982 | |
| 5983 | -- |
| 5984 | -- Name: core_serviceattribute_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 5985 | -- |
| 5986 | |
| 5987 | SELECT pg_catalog.setval('core_serviceattribute_id_seq', 1, true); |
| 5988 | |
| 5989 | |
| 5990 | -- |
| 5991 | -- Data for Name: core_serviceclass; Type: TABLE DATA; Schema: public; Owner: postgres |
| 5992 | -- |
| 5993 | |
| 5994 | COPY core_serviceclass (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, commitment, "membershipFee", "membershipFeeMonths", "upgradeRequiresApproval") FROM stdin; |
| 5995 | 1 2015-02-17 22:06:39.361+00 2015-02-17 22:06:39.361+00 \N \N {} 0 - Provisioning in progress f f f f Best Effort Best Effort 365 0 12 f |
| 5996 | \. |
| 5997 | |
| 5998 | |
| 5999 | -- |
| 6000 | -- Name: core_serviceclass_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6001 | -- |
| 6002 | |
| 6003 | SELECT pg_catalog.setval('core_serviceclass_id_seq', 1, true); |
| 6004 | |
| 6005 | |
| 6006 | -- |
| 6007 | -- Data for Name: core_serviceclass_upgradeFrom; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6008 | -- |
| 6009 | |
| 6010 | COPY "core_serviceclass_upgradeFrom" (id, from_serviceclass_id, to_serviceclass_id) FROM stdin; |
| 6011 | \. |
| 6012 | |
| 6013 | |
| 6014 | -- |
| 6015 | -- Name: core_serviceclass_upgradeFrom_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6016 | -- |
| 6017 | |
| 6018 | SELECT pg_catalog.setval('"core_serviceclass_upgradeFrom_id_seq"', 1, false); |
| 6019 | |
| 6020 | |
| 6021 | -- |
| 6022 | -- Data for Name: core_serviceprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6023 | -- |
| 6024 | |
| 6025 | COPY core_serviceprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_id, service_id, user_id) FROM stdin; |
| 6026 | \. |
| 6027 | |
| 6028 | |
| 6029 | -- |
| 6030 | -- Name: core_serviceprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6031 | -- |
| 6032 | |
| 6033 | SELECT pg_catalog.setval('core_serviceprivilege_id_seq', 1, false); |
| 6034 | |
| 6035 | |
| 6036 | -- |
| 6037 | -- Data for Name: core_serviceresource; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6038 | -- |
| 6039 | |
| 6040 | COPY core_serviceresource (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, "maxUnitsDeployment", "maxUnitsNode", "maxDuration", "bucketInRate", "bucketMaxSize", cost, "calendarReservable", "serviceClass_id") FROM stdin; |
| 6041 | \. |
| 6042 | |
| 6043 | |
| 6044 | -- |
| 6045 | -- Name: core_serviceresource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6046 | -- |
| 6047 | |
| 6048 | SELECT pg_catalog.setval('core_serviceresource_id_seq', 1, false); |
| 6049 | |
| 6050 | |
| 6051 | -- |
| 6052 | -- Data for Name: core_servicerole; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6053 | -- |
| 6054 | |
| 6055 | COPY core_servicerole (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role) FROM stdin; |
| 6056 | \. |
| 6057 | |
| 6058 | |
| 6059 | -- |
| 6060 | -- Name: core_servicerole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6061 | -- |
| 6062 | |
| 6063 | SELECT pg_catalog.setval('core_servicerole_id_seq', 1, false); |
| 6064 | |
| 6065 | |
| 6066 | -- |
| 6067 | -- Data for Name: core_site; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6068 | -- |
| 6069 | |
| 6070 | COPY core_site (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, site_url, enabled, hosts_nodes, hosts_users, location, longitude, latitude, login_base, is_public, abbreviated_name) FROM stdin; |
| 6071 | 1 2015-02-17 22:06:37.837+00 2016-04-05 17:42:10.798018+00 \N \N {} 0 - Provisioning in progress f f f f mysite http://opencloud.us/ t t t 0,0 \N \N mysite t mysite |
| 6072 | \. |
| 6073 | |
| 6074 | |
| 6075 | -- |
| 6076 | -- Name: core_site_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6077 | -- |
| 6078 | |
| 6079 | SELECT pg_catalog.setval('core_site_id_seq', 1, true); |
| 6080 | |
| 6081 | |
| 6082 | -- |
| 6083 | -- Data for Name: core_sitecredential; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6084 | -- |
| 6085 | |
| 6086 | COPY core_sitecredential (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, key_id, enc_value, site_id) FROM stdin; |
| 6087 | \. |
| 6088 | |
| 6089 | |
| 6090 | -- |
| 6091 | -- Name: core_sitecredential_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6092 | -- |
| 6093 | |
| 6094 | SELECT pg_catalog.setval('core_sitecredential_id_seq', 1, false); |
| 6095 | |
| 6096 | |
| 6097 | -- |
| 6098 | -- Data for Name: core_sitedeployment; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6099 | -- |
| 6100 | |
| 6101 | COPY core_sitedeployment (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, availability_zone, controller_id, deployment_id, site_id) FROM stdin; |
| 6102 | 1 2015-02-17 22:06:37.893+00 2016-04-05 17:41:57.888081+00 \N \N {} 0 - Provisioning in progress f f f f \N 1 1 1 |
| 6103 | \. |
| 6104 | |
| 6105 | |
| 6106 | -- |
| 6107 | -- Name: core_sitedeployment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6108 | -- |
| 6109 | |
| 6110 | SELECT pg_catalog.setval('core_sitedeployment_id_seq', 1, true); |
| 6111 | |
| 6112 | |
| 6113 | -- |
| 6114 | -- Data for Name: core_siteprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6115 | -- |
| 6116 | |
| 6117 | COPY core_siteprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_id, site_id, user_id) FROM stdin; |
| 6118 | \. |
| 6119 | |
| 6120 | |
| 6121 | -- |
| 6122 | -- Name: core_siteprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6123 | -- |
| 6124 | |
| 6125 | SELECT pg_catalog.setval('core_siteprivilege_id_seq', 1, false); |
| 6126 | |
| 6127 | |
| 6128 | -- |
| 6129 | -- Data for Name: core_siterole; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6130 | -- |
| 6131 | |
| 6132 | COPY core_siterole (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role) FROM stdin; |
| 6133 | 1 2015-02-17 22:06:38.62+00 2015-02-17 22:06:38.62+00 \N \N {} 0 - Provisioning in progress f f f f admin |
| 6134 | 2 2015-02-17 22:06:38.669+00 2015-02-17 22:06:38.67+00 \N \N {} 0 - Provisioning in progress f f f f pi |
| 6135 | 3 2015-02-17 22:06:38.73+00 2015-02-17 22:06:38.731+00 \N \N {} 0 - Provisioning in progress f f f f tech |
| 6136 | \. |
| 6137 | |
| 6138 | |
| 6139 | -- |
| 6140 | -- Name: core_siterole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6141 | -- |
| 6142 | |
| 6143 | SELECT pg_catalog.setval('core_siterole_id_seq', 3, true); |
| 6144 | |
| 6145 | |
| 6146 | -- |
| 6147 | -- Data for Name: core_slice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6148 | -- |
| 6149 | |
| 6150 | COPY core_slice (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, enabled, omf_friendly, description, slice_url, max_instances, network, exposed_ports, mount_data_sets, default_isolation, creator_id, default_flavor_id, default_image_id, service_id, "serviceClass_id", site_id) FROM stdin; |
| 6151 | 1 2016-04-05 17:42:10.909075+00 2016-04-05 17:42:10.909102+00 \N \N {} 0 - Provisioning in progress f f f f mysite_vcpe t f 10 \N \N GenBank vm 1 \N \N 2 1 1 |
| 6152 | 2 2016-04-05 17:42:10.915949+00 2016-04-05 17:42:10.915976+00 \N \N {} 0 - Provisioning in progress f f f f mysite_vbng t f 10 \N \N GenBank vm 1 \N \N \N 1 1 |
| 6153 | 3 2016-04-05 17:42:10.958832+00 2016-04-05 17:42:10.958858+00 \N \N {} 0 - Provisioning in progress f f f f mysite_volt t f 10 \N \N GenBank vm 1 \N \N \N 1 1 |
| 6154 | 4 2016-04-05 17:42:11.112233+00 2016-04-05 17:42:11.112263+00 \N \N {} 0 - Provisioning in progress f f f f mysite_clients t f 10 \N \N GenBank vm 1 \N \N \N 1 1 |
| 6155 | 5 2016-04-05 17:42:11.127649+00 2016-04-05 17:42:11.127678+00 \N \N {} 0 - Provisioning in progress f f f f mysite_onos_vbng t f 10 \N \N GenBank vm 1 \N \N 4 1 1 |
| 6156 | 6 2016-04-05 17:42:11.167287+00 2016-04-05 17:42:11.167313+00 \N \N {} 0 - Provisioning in progress f f f f mysite_onos_volt t f 10 \N \N GenBank vm 1 \N \N 5 1 1 |
| 6157 | \. |
| 6158 | |
| 6159 | |
| 6160 | -- |
| 6161 | -- Name: core_slice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6162 | -- |
| 6163 | |
| 6164 | SELECT pg_catalog.setval('core_slice_id_seq', 6, true); |
| 6165 | |
| 6166 | |
| 6167 | -- |
| 6168 | -- Data for Name: core_slicecredential; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6169 | -- |
| 6170 | |
| 6171 | COPY core_slicecredential (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, key_id, enc_value, slice_id) FROM stdin; |
| 6172 | \. |
| 6173 | |
| 6174 | |
| 6175 | -- |
| 6176 | -- Name: core_slicecredential_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6177 | -- |
| 6178 | |
| 6179 | SELECT pg_catalog.setval('core_slicecredential_id_seq', 1, false); |
| 6180 | |
| 6181 | |
| 6182 | -- |
| 6183 | -- Data for Name: core_sliceprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6184 | -- |
| 6185 | |
| 6186 | COPY core_sliceprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_id, slice_id, user_id) FROM stdin; |
| 6187 | \. |
| 6188 | |
| 6189 | |
| 6190 | -- |
| 6191 | -- Name: core_sliceprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6192 | -- |
| 6193 | |
| 6194 | SELECT pg_catalog.setval('core_sliceprivilege_id_seq', 1, false); |
| 6195 | |
| 6196 | |
| 6197 | -- |
| 6198 | -- Data for Name: core_slicerole; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6199 | -- |
| 6200 | |
| 6201 | COPY core_slicerole (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role) FROM stdin; |
| 6202 | 1 2015-02-17 22:06:38.778+00 2015-02-17 22:06:38.778+00 \N \N {} 0 - Provisioning in progress f f f f admin |
| 6203 | 2 2015-02-17 22:06:38.836+00 2015-02-17 22:06:38.836+00 \N \N {} 0 - Provisioning in progress f f f f access |
| 6204 | \. |
| 6205 | |
| 6206 | |
| 6207 | -- |
| 6208 | -- Name: core_slicerole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6209 | -- |
| 6210 | |
| 6211 | SELECT pg_catalog.setval('core_slicerole_id_seq', 2, true); |
| 6212 | |
| 6213 | |
| 6214 | -- |
| 6215 | -- Data for Name: core_slicetag; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6216 | -- |
| 6217 | |
| 6218 | COPY core_slicetag (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, value, slice_id) FROM stdin; |
| 6219 | \. |
| 6220 | |
| 6221 | |
| 6222 | -- |
| 6223 | -- Name: core_slicetag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6224 | -- |
| 6225 | |
| 6226 | SELECT pg_catalog.setval('core_slicetag_id_seq', 1, false); |
| 6227 | |
| 6228 | |
| 6229 | -- |
| 6230 | -- Data for Name: core_tag; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6231 | -- |
| 6232 | |
| 6233 | COPY core_tag (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, value, object_id, content_type_id, service_id) FROM stdin; |
| 6234 | 1 2016-04-05 17:42:11.08141+00 2016-04-05 17:42:11.081432+00 \N \N {} 0 - Provisioning in progress f f f f s_tag 222 1 53 2 |
| 6235 | \. |
| 6236 | |
| 6237 | |
| 6238 | -- |
| 6239 | -- Name: core_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6240 | -- |
| 6241 | |
| 6242 | SELECT pg_catalog.setval('core_tag_id_seq', 1, true); |
| 6243 | |
| 6244 | |
| 6245 | -- |
| 6246 | -- Data for Name: core_tenant; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6247 | -- |
| 6248 | |
| 6249 | COPY core_tenant (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, kind, service_specific_id, service_specific_attribute, connect_method, provider_service_id, subscriber_root_id, subscriber_service_id, subscriber_tenant_id, subscriber_user_id) FROM stdin; |
| 6250 | 1 2016-04-05 17:42:10.897527+00 2016-04-05 17:42:10.897558+00 \N \N {} 0 - Provisioning in progress f f f f coarse \N \N na 1 \N 2 \N \N |
| 6251 | 2 2016-04-05 17:42:10.978184+00 2016-04-05 17:42:10.978207+00 \N \N {} 0 - Provisioning in progress f f f f coarse \N \N na 2 \N 3 \N \N |
| 6252 | 3 2016-04-05 17:42:10.995794+00 2016-04-05 17:42:10.995832+00 \N \N {} 0 - Provisioning in progress f f f f vOLT 123 {"creator_id": 1, "c_tag": "432", "s_tag": "222"} na 3 1 \N \N \N |
| 6253 | 5 2016-04-05 17:42:11.086763+00 2016-04-05 17:42:11.086785+00 \N \N {} 0 - Provisioning in progress f f f f vBNG \N \N na 1 \N \N 4 \N |
| 6254 | 6 2016-04-05 17:42:11.224376+00 2016-04-05 17:42:11.22441+00 \N \N {} 0 - Provisioning in progress f f f f onos \N {"creator_id": 1, "dependencies": "org.onosproject.proxyarp, org.onosproject.virtualbng, org.onosproject.openflow, org.onosproject.fwd", "name": "vBNG_ONOS_app"} na 4 \N 1 \N \N |
| 6255 | 7 2016-04-05 17:42:11.359136+00 2016-04-05 17:42:11.359169+00 \N \N {} 0 - Provisioning in progress f f f f onos \N {"creator_id": 1, "dependencies": "org.onosproject.openflow-base, org.onosproject.olt, org.ciena.onos.ext_notifier, org.ciena.onos.volt_event_publisher", "name": "vOLT_ONOS_app", "install_dependencies": "onos-ext-notifier-1.0-SNAPSHOT.oar, onos-ext-volt-event-publisher-1.0-SNAPSHOT.oar"} na 5 \N 3 \N \N |
| 6256 | 4 2016-04-05 17:42:11.006459+00 2016-04-05 21:11:13.789553+00 \N \N {} 0 - Provisioning in progress f f f f vCPE \N {"instance_id": 1, "creator_id": 1} na 2 \N \N 3 \N |
| 6257 | \. |
| 6258 | |
| 6259 | |
| 6260 | -- |
| 6261 | -- Name: core_tenant_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6262 | -- |
| 6263 | |
| 6264 | SELECT pg_catalog.setval('core_tenant_id_seq', 7, true); |
| 6265 | |
| 6266 | |
| 6267 | -- |
| 6268 | -- Data for Name: core_tenantattribute; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6269 | -- |
| 6270 | |
| 6271 | COPY core_tenantattribute (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, value, tenant_id) FROM stdin; |
| 6272 | 1 2016-04-05 17:42:11.232458+00 2016-04-05 17:42:11.23249+00 \N \N {} 0 - Provisioning in progress f f f f config_network-cfg.json {\n "ports" : {\n "of:0000000000000001/1" : {\n "interfaces" : [\n {\n "ips" : [ "10.0.1.253/24" ],\n "mac" : "00:00:00:00:00:99"\n }\n ]\n },\n "of:0000000000000001/2" : {\n "interfaces" : [\n {\n "ips" : [ "10.254.0.2/24" ],\n "mac" : "00:00:00:00:00:98"\n }\n ]\n }\n }\n}\n 6 |
| 6273 | 2 2016-04-05 17:42:11.366036+00 2016-04-05 17:42:11.366073+00 \N \N {} 0 - Provisioning in progress f f f f component_config {\n "org.ciena.onos.ext_notifier.KafkaNotificationBridge":{\n "rabbit.user": "<rabbit_user>",\n "rabbit.password": "<rabbit_password>",\n "rabbit.host": "<rabbit_host>",\n "publish.rabbit": "true",\n "volt.events.rabbit.topic": "notifications.info",\n "volt.events.rabbit.exchange": "voltlistener",\n "volt.events.opaque.info": "{project_id: <keystone_tenant_id>, user_id: <keystone_user_id>}",\n "publish.volt.events": "true"\n }\n}\n 7 |
| 6274 | \. |
| 6275 | |
| 6276 | |
| 6277 | -- |
| 6278 | -- Name: core_tenantattribute_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6279 | -- |
| 6280 | |
| 6281 | SELECT pg_catalog.setval('core_tenantattribute_id_seq', 2, true); |
| 6282 | |
| 6283 | |
| 6284 | -- |
| 6285 | -- Data for Name: core_tenantroot; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6286 | -- |
| 6287 | |
| 6288 | COPY core_tenantroot (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, kind, name, service_specific_attribute, service_specific_id) FROM stdin; |
| 6289 | 1 2016-04-05 17:42:10.85283+00 2016-04-05 21:11:13.773087+00 \N \N {} 0 - Provisioning in progress f f f f CordSubscriberRoot My House {"status": "enabled", "cdn_enable": false, "users": [{"mac": "01:02:03:04:05:06", "level": "PG_13", "id": 0, "name": "Mom's PC"}, {"mac": "34:36:3B:C9:B6:A6", "id": 1, "name": "Jill's Laptop", "level": "PG_13"}, {"mac": "68:5B:35:9D:91:D5", "level": "PG_13", "id": 2, "name": "Jack's Laptop"}, {"mac": "90:E2:BA:82:F9:75", "id": 3, "name": "Dad's PC", "level": "PG_13"}], "downlink_speed": 1000000000, "url_filter_level": "R", "uplink_speed": 1000000000, "enable_uverse": false, "firewall_enable": false, "url_filter_enable": false} 123 |
| 6290 | \. |
| 6291 | |
| 6292 | |
| 6293 | -- |
| 6294 | -- Name: core_tenantroot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6295 | -- |
| 6296 | |
| 6297 | SELECT pg_catalog.setval('core_tenantroot_id_seq', 1, true); |
| 6298 | |
| 6299 | |
| 6300 | -- |
| 6301 | -- Data for Name: core_tenantrootprivilege; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6302 | -- |
| 6303 | |
| 6304 | COPY core_tenantrootprivilege (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role_id, tenant_root_id, user_id) FROM stdin; |
| 6305 | 1 2016-04-05 17:42:10.864854+00 2016-04-05 17:42:10.864879+00 \N \N {} 0 - Provisioning in progress f f f f 1 1 2 |
| 6306 | \. |
| 6307 | |
| 6308 | |
| 6309 | -- |
| 6310 | -- Name: core_tenantrootprivilege_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6311 | -- |
| 6312 | |
| 6313 | SELECT pg_catalog.setval('core_tenantrootprivilege_id_seq', 1, true); |
| 6314 | |
| 6315 | |
| 6316 | -- |
| 6317 | -- Data for Name: core_tenantrootrole; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6318 | -- |
| 6319 | |
| 6320 | COPY core_tenantrootrole (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, role) FROM stdin; |
| 6321 | 1 2016-04-05 17:42:10.859991+00 2016-04-05 17:42:10.860017+00 \N \N {} 0 - Provisioning in progress f f f f admin |
| 6322 | \. |
| 6323 | |
| 6324 | |
| 6325 | -- |
| 6326 | -- Name: core_tenantrootrole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6327 | -- |
| 6328 | |
| 6329 | SELECT pg_catalog.setval('core_tenantrootrole_id_seq', 1, true); |
| 6330 | |
| 6331 | |
| 6332 | -- |
| 6333 | -- Data for Name: core_usableobject; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6334 | -- |
| 6335 | |
| 6336 | COPY core_usableobject (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name) FROM stdin; |
| 6337 | \. |
| 6338 | |
| 6339 | |
| 6340 | -- |
| 6341 | -- Name: core_usableobject_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6342 | -- |
| 6343 | |
| 6344 | SELECT pg_catalog.setval('core_usableobject_id_seq', 1, false); |
| 6345 | |
| 6346 | |
| 6347 | -- |
| 6348 | -- Data for Name: core_user; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6349 | -- |
| 6350 | |
| 6351 | COPY core_user (id, password, last_login, email, username, firstname, lastname, phone, user_url, public_key, is_active, is_admin, is_staff, is_readonly, is_registering, is_appuser, login_page, created, updated, enacted, policed, backend_status, deleted, write_protect, timezone, site_id) FROM stdin; |
| 6352 | 2 pbkdf2_sha256$12000$Oc7yu5OUSNRK$lV5m9OLtVPWAfog5aX0CHYfh4gyLYj1iSvRq+wk8kTk= 2016-04-05 17:42:10.803373+00 johndoe@myhouse.com johndoe@myhouse.com john doe \N \N \N t f t f f f \N 2016-04-05 17:42:10.844525+00 2016-04-05 17:42:10.844548+00 \N \N Provisioning in progress f f America/New_York 1 |
| 6353 | 1 pbkdf2_sha256$12000$Qufx9iqtaYma$xs0YurPOcj9qYQna/Qrb3K+im9Yr2XEVr0J4Kqek7AE= 2016-04-05 17:42:16.66369+00 padmin@vicci.org padmin@vicci.org XOS admin \N \N \N t t t f f f \N 2015-02-17 22:06:38.059+00 2016-04-05 17:42:11.387962+00 \N \N Provisioning in progress f f America/New_York 1 |
| 6354 | \. |
| 6355 | |
| 6356 | |
| 6357 | -- |
| 6358 | -- Name: core_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6359 | -- |
| 6360 | |
| 6361 | SELECT pg_catalog.setval('core_user_id_seq', 2, true); |
| 6362 | |
| 6363 | |
| 6364 | -- |
| 6365 | -- Data for Name: core_usercredential; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6366 | -- |
| 6367 | |
| 6368 | COPY core_usercredential (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, key_id, enc_value, user_id) FROM stdin; |
| 6369 | \. |
| 6370 | |
| 6371 | |
| 6372 | -- |
| 6373 | -- Name: core_usercredential_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6374 | -- |
| 6375 | |
| 6376 | SELECT pg_catalog.setval('core_usercredential_id_seq', 1, false); |
| 6377 | |
| 6378 | |
| 6379 | -- |
| 6380 | -- Data for Name: core_userdashboardview; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6381 | -- |
| 6382 | |
| 6383 | COPY core_userdashboardview (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, "order", "dashboardView_id", user_id) FROM stdin; |
| 6384 | 2 2016-04-05 18:46:44.099329+00 2016-04-05 18:46:44.099362+00 \N \N {} 0 - Provisioning in progress f f f f 0 5 1 |
| 6385 | 3 2016-04-05 18:46:44.101231+00 2016-04-05 18:46:44.101257+00 \N \N {} 0 - Provisioning in progress f f f f 1 6 1 |
| 6386 | \. |
| 6387 | |
| 6388 | |
| 6389 | -- |
| 6390 | -- Name: core_userdashboardview_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6391 | -- |
| 6392 | |
| 6393 | SELECT pg_catalog.setval('core_userdashboardview_id_seq', 3, true); |
| 6394 | |
| 6395 | |
| 6396 | -- |
| 6397 | -- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6398 | -- |
| 6399 | |
| 6400 | COPY django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; |
| 6401 | 1 2016-04-05 18:46:36.64407+00 6 truckroll 1 29 1 |
| 6402 | \. |
| 6403 | |
| 6404 | |
| 6405 | -- |
| 6406 | -- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6407 | -- |
| 6408 | |
| 6409 | SELECT pg_catalog.setval('django_admin_log_id_seq', 1, true); |
| 6410 | |
| 6411 | |
| 6412 | -- |
| 6413 | -- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6414 | -- |
| 6415 | |
| 6416 | COPY django_content_type (id, name, app_label, model) FROM stdin; |
| 6417 | 1 permission auth permission |
| 6418 | 2 group auth group |
| 6419 | 3 content type contenttypes contenttype |
| 6420 | 4 session sessions session |
| 6421 | 5 log entry admin logentry |
| 6422 | 6 project core project |
| 6423 | 7 service core service |
| 6424 | 8 service attribute core serviceattribute |
| 6425 | 9 service role core servicerole |
| 6426 | 10 service privilege core serviceprivilege |
| 6427 | 11 tenant root core tenantroot |
| 6428 | 12 tenant core tenant |
| 6429 | 13 tenant attribute core tenantattribute |
| 6430 | 14 tenant root role core tenantrootrole |
| 6431 | 15 tenant root privilege core tenantrootprivilege |
| 6432 | 16 tag core tag |
| 6433 | 17 role core role |
| 6434 | 18 site core site |
| 6435 | 19 site role core siterole |
| 6436 | 20 site privilege core siteprivilege |
| 6437 | 21 deployment core deployment |
| 6438 | 22 deployment role core deploymentrole |
| 6439 | 23 deployment privilege core deploymentprivilege |
| 6440 | 24 controller role core controllerrole |
| 6441 | 25 controller core controller |
| 6442 | 26 site deployment core sitedeployment |
| 6443 | 27 controller site core controllersite |
| 6444 | 28 diag core diag |
| 6445 | 29 dashboard view core dashboardview |
| 6446 | 30 controller dashboard view core controllerdashboardview |
| 6447 | 31 user core user |
| 6448 | 32 user dashboard view core userdashboardview |
| 6449 | 33 service class core serviceclass |
| 6450 | 34 flavor core flavor |
| 6451 | 35 image core image |
| 6452 | 36 image deployments core imagedeployments |
| 6453 | 37 controller images core controllerimages |
| 6454 | 38 slice core slice |
| 6455 | 39 slice role core slicerole |
| 6456 | 40 slice privilege core sliceprivilege |
| 6457 | 41 controller slice core controllerslice |
| 6458 | 42 controller user core controlleruser |
| 6459 | 43 controller site privilege core controllersiteprivilege |
| 6460 | 44 controller slice privilege core controllersliceprivilege |
| 6461 | 45 service resource core serviceresource |
| 6462 | 46 user credential core usercredential |
| 6463 | 47 site credential core sitecredential |
| 6464 | 48 slice credential core slicecredential |
| 6465 | 49 controller credential core controllercredential |
| 6466 | 50 node core node |
| 6467 | 51 node label core nodelabel |
| 6468 | 52 slice tag core slicetag |
| 6469 | 53 instance core instance |
| 6470 | 54 reservation core reservation |
| 6471 | 55 reserved resource core reservedresource |
| 6472 | 56 network template core networktemplate |
| 6473 | 57 network core network |
| 6474 | 58 controller network core controllernetwork |
| 6475 | 59 network slice core networkslice |
| 6476 | 60 port core port |
| 6477 | 61 router core router |
| 6478 | 62 network parameter type core networkparametertype |
| 6479 | 63 network parameter core networkparameter |
| 6480 | 64 address pool core addresspool |
| 6481 | 65 account core account |
| 6482 | 66 invoice core invoice |
| 6483 | 67 usable object core usableobject |
| 6484 | 68 payment core payment |
| 6485 | 69 charge core charge |
| 6486 | 70 program core program |
| 6487 | 71 subscriber core subscriber |
| 6488 | 72 provider core provider |
| 6489 | 73 tenant with container core tenantwithcontainer |
| 6490 | 74 coarse tenant core coarsetenant |
| 6491 | 75 HPC Service hpc hpcservice |
| 6492 | 76 service provider hpc serviceprovider |
| 6493 | 77 content provider hpc contentprovider |
| 6494 | 78 origin server hpc originserver |
| 6495 | 79 cdn prefix hpc cdnprefix |
| 6496 | 80 access map hpc accessmap |
| 6497 | 81 site map hpc sitemap |
| 6498 | 82 hpc health check hpc hpchealthcheck |
| 6499 | 83 vBNG Service cord vbngservice |
| 6500 | 84 vsg tenant cord vsgtenant |
| 6501 | 85 volt tenant cord volttenant |
| 6502 | 86 vbng tenant cord vbngtenant |
| 6503 | 87 cord subscriber root cord cordsubscriberroot |
| 6504 | 88 vOLT Service cord voltservice |
| 6505 | 89 vSG Service cord vsgservice |
| 6506 | 92 ONOS Service onos onosservice |
| 6507 | 93 onos app onos onosapp |
| 6508 | 94 s flow tenant ceilometer sflowtenant |
| 6509 | 95 Ceilometer Service ceilometer ceilometerservice |
| 6510 | 96 sFlow Collection Service ceilometer sflowservice |
| 6511 | 97 monitoring channel ceilometer monitoringchannel |
| 6512 | 98 Request Router Service requestrouter requestrouterservice |
| 6513 | 99 service map requestrouter servicemap |
| 6514 | 100 Syndicate Service syndicate_storage syndicateservice |
| 6515 | 101 syndicate principal syndicate_storage syndicateprincipal |
| 6516 | 102 volume syndicate_storage volume |
| 6517 | 103 volume access right syndicate_storage volumeaccessright |
| 6518 | 104 slice secret syndicate_storage slicesecret |
| 6519 | 105 volume slice syndicate_storage volumeslice |
| 6520 | 106 vtr tenant vtr vtrtenant |
| 6521 | 107 vTR Service vtr vtrservice |
| 6522 | \. |
| 6523 | |
| 6524 | |
| 6525 | -- |
| 6526 | -- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6527 | -- |
| 6528 | |
| 6529 | SELECT pg_catalog.setval('django_content_type_id_seq', 107, true); |
| 6530 | |
| 6531 | |
| 6532 | -- |
| 6533 | -- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6534 | -- |
| 6535 | |
| 6536 | COPY django_migrations (id, app, name, applied) FROM stdin; |
| 6537 | 1 contenttypes 0001_initial 2016-04-05 17:41:25.364327+00 |
| 6538 | 2 core 0001_initial 2016-04-05 17:41:45.947411+00 |
| 6539 | 3 admin 0001_initial 2016-04-05 17:41:46.336359+00 |
| 6540 | 4 auth 0001_initial 2016-04-05 17:41:46.384468+00 |
| 6541 | 5 ceilometer 0001_initial 2016-04-05 17:41:46.659809+00 |
| 6542 | 6 cord 0001_initial 2016-04-05 17:41:46.862406+00 |
| 6543 | 8 hpc 0001_initial 2016-04-05 17:41:50.450946+00 |
| 6544 | 9 onos 0001_initial 2016-04-05 17:41:50.637887+00 |
| 6545 | 10 requestrouter 0001_initial 2016-04-05 17:41:51.319325+00 |
| 6546 | 11 sessions 0001_initial 2016-04-05 17:41:51.331342+00 |
| 6547 | 12 syndicate_storage 0001_initial 2016-04-05 17:41:53.077489+00 |
| 6548 | 13 vtr 0001_initial 2016-04-05 17:41:53.270146+00 |
| 6549 | \. |
| 6550 | |
| 6551 | |
| 6552 | -- |
| 6553 | -- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6554 | -- |
| 6555 | |
| 6556 | SELECT pg_catalog.setval('django_migrations_id_seq', 13, true); |
| 6557 | |
| 6558 | |
| 6559 | -- |
| 6560 | -- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6561 | -- |
| 6562 | |
| 6563 | COPY django_session (session_key, session_data, expire_date) FROM stdin; |
| 6564 | 7ppjuoyfejs1zo7q3rn47a6sciqpqjxs ZTMzOTkxNDYwNzJiZGI4NDdjMTM2YmU1ZDNjNmI2N2Y0NWM2MDdlMTp7Il9hdXRoX3VzZXJfaGFzaCI6IjVkMTdkNWYxYmQxYjNmOTJhMWJiYzc3YzE0NDNlMzNhNDRiNjQ0YzQiLCJhdXRoIjp7InVzZXJuYW1lIjoicGFkbWluQHZpY2NpLm9yZyIsInBhc3N3b3JkIjoibGV0bWVpbiJ9LCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOjF9 2016-04-19 17:42:16.666323+00 |
| 6565 | \. |
| 6566 | |
| 6567 | |
| 6568 | -- |
| 6569 | -- Data for Name: hpc_accessmap; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6570 | -- |
| 6571 | |
| 6572 | COPY hpc_accessmap (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, map, "contentProvider_id") FROM stdin; |
| 6573 | \. |
| 6574 | |
| 6575 | |
| 6576 | -- |
| 6577 | -- Name: hpc_accessmap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6578 | -- |
| 6579 | |
| 6580 | SELECT pg_catalog.setval('hpc_accessmap_id_seq', 1, false); |
| 6581 | |
| 6582 | |
| 6583 | -- |
| 6584 | -- Data for Name: hpc_cdnprefix; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6585 | -- |
| 6586 | |
| 6587 | COPY hpc_cdnprefix (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, cdn_prefix_id, prefix, description, enabled, "contentProvider_id", "defaultOriginServer_id") FROM stdin; |
| 6588 | \. |
| 6589 | |
| 6590 | |
| 6591 | -- |
| 6592 | -- Name: hpc_cdnprefix_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6593 | -- |
| 6594 | |
| 6595 | SELECT pg_catalog.setval('hpc_cdnprefix_id_seq', 1, false); |
| 6596 | |
| 6597 | |
| 6598 | -- |
| 6599 | -- Data for Name: hpc_contentprovider; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6600 | -- |
| 6601 | |
| 6602 | COPY hpc_contentprovider (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, content_provider_id, name, enabled, description, "serviceProvider_id") FROM stdin; |
| 6603 | \. |
| 6604 | |
| 6605 | |
| 6606 | -- |
| 6607 | -- Name: hpc_contentprovider_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6608 | -- |
| 6609 | |
| 6610 | SELECT pg_catalog.setval('hpc_contentprovider_id_seq', 1, false); |
| 6611 | |
| 6612 | |
| 6613 | -- |
| 6614 | -- Data for Name: hpc_contentprovider_users; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6615 | -- |
| 6616 | |
| 6617 | COPY hpc_contentprovider_users (id, contentprovider_id, user_id) FROM stdin; |
| 6618 | \. |
| 6619 | |
| 6620 | |
| 6621 | -- |
| 6622 | -- Name: hpc_contentprovider_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6623 | -- |
| 6624 | |
| 6625 | SELECT pg_catalog.setval('hpc_contentprovider_users_id_seq', 1, false); |
| 6626 | |
| 6627 | |
| 6628 | -- |
| 6629 | -- Data for Name: hpc_hpchealthcheck; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6630 | -- |
| 6631 | |
| 6632 | COPY hpc_hpchealthcheck (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, kind, resource_name, result_contains, result_min_size, result_max_size, "hpcService_id") FROM stdin; |
| 6633 | \. |
| 6634 | |
| 6635 | |
| 6636 | -- |
| 6637 | -- Name: hpc_hpchealthcheck_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6638 | -- |
| 6639 | |
| 6640 | SELECT pg_catalog.setval('hpc_hpchealthcheck_id_seq', 1, false); |
| 6641 | |
| 6642 | |
| 6643 | -- |
| 6644 | -- Data for Name: hpc_hpcservice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6645 | -- |
| 6646 | |
| 6647 | COPY hpc_hpcservice (service_ptr_id, cmi_hostname, hpc_port80, watcher_hpc_network, watcher_dnsdemux_network, watcher_dnsredir_network) FROM stdin; |
| 6648 | \. |
| 6649 | |
| 6650 | |
| 6651 | -- |
| 6652 | -- Data for Name: hpc_originserver; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6653 | -- |
| 6654 | |
| 6655 | COPY hpc_originserver (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, origin_server_id, url, authenticated, enabled, protocol, redirects, description, "contentProvider_id") FROM stdin; |
| 6656 | \. |
| 6657 | |
| 6658 | |
| 6659 | -- |
| 6660 | -- Name: hpc_originserver_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6661 | -- |
| 6662 | |
| 6663 | SELECT pg_catalog.setval('hpc_originserver_id_seq', 1, false); |
| 6664 | |
| 6665 | |
| 6666 | -- |
| 6667 | -- Data for Name: hpc_serviceprovider; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6668 | -- |
| 6669 | |
| 6670 | COPY hpc_serviceprovider (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, service_provider_id, name, description, enabled, "hpcService_id") FROM stdin; |
| 6671 | \. |
| 6672 | |
| 6673 | |
| 6674 | -- |
| 6675 | -- Name: hpc_serviceprovider_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6676 | -- |
| 6677 | |
| 6678 | SELECT pg_catalog.setval('hpc_serviceprovider_id_seq', 1, false); |
| 6679 | |
| 6680 | |
| 6681 | -- |
| 6682 | -- Data for Name: hpc_sitemap; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6683 | -- |
| 6684 | |
| 6685 | COPY hpc_sitemap (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, map, map_id, "cdnPrefix_id", "contentProvider_id", "hpcService_id", "serviceProvider_id") FROM stdin; |
| 6686 | \. |
| 6687 | |
| 6688 | |
| 6689 | -- |
| 6690 | -- Name: hpc_sitemap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6691 | -- |
| 6692 | |
| 6693 | SELECT pg_catalog.setval('hpc_sitemap_id_seq', 1, false); |
| 6694 | |
| 6695 | |
| 6696 | -- |
| 6697 | -- Data for Name: requestrouter_requestrouterservice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6698 | -- |
| 6699 | |
| 6700 | COPY requestrouter_requestrouterservice (service_ptr_id, "behindNat", "defaultTTL", "defaultAction", "lastResortAction", "maxAnswers") FROM stdin; |
| 6701 | \. |
| 6702 | |
| 6703 | |
| 6704 | -- |
| 6705 | -- Data for Name: requestrouter_servicemap; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6706 | -- |
| 6707 | |
| 6708 | COPY requestrouter_servicemap (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, prefix, "siteMap", "accessMap", owner_id, slice_id) FROM stdin; |
| 6709 | \. |
| 6710 | |
| 6711 | |
| 6712 | -- |
| 6713 | -- Name: requestrouter_servicemap_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6714 | -- |
| 6715 | |
| 6716 | SELECT pg_catalog.setval('requestrouter_servicemap_id_seq', 1, false); |
| 6717 | |
| 6718 | |
| 6719 | -- |
| 6720 | -- Data for Name: syndicate_storage_slicesecret; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6721 | -- |
| 6722 | |
| 6723 | COPY syndicate_storage_slicesecret (id, secret, slice_id_id) FROM stdin; |
| 6724 | \. |
| 6725 | |
| 6726 | |
| 6727 | -- |
| 6728 | -- Name: syndicate_storage_slicesecret_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6729 | -- |
| 6730 | |
| 6731 | SELECT pg_catalog.setval('syndicate_storage_slicesecret_id_seq', 1, false); |
| 6732 | |
| 6733 | |
| 6734 | -- |
| 6735 | -- Data for Name: syndicate_storage_syndicateprincipal; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6736 | -- |
| 6737 | |
| 6738 | COPY syndicate_storage_syndicateprincipal (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, principal_id, public_key_pem, sealed_private_key) FROM stdin; |
| 6739 | \. |
| 6740 | |
| 6741 | |
| 6742 | -- |
| 6743 | -- Name: syndicate_storage_syndicateprincipal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6744 | -- |
| 6745 | |
| 6746 | SELECT pg_catalog.setval('syndicate_storage_syndicateprincipal_id_seq', 1, false); |
| 6747 | |
| 6748 | |
| 6749 | -- |
| 6750 | -- Data for Name: syndicate_storage_syndicateservice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6751 | -- |
| 6752 | |
| 6753 | COPY syndicate_storage_syndicateservice (service_ptr_id) FROM stdin; |
| 6754 | \. |
| 6755 | |
| 6756 | |
| 6757 | -- |
| 6758 | -- Data for Name: syndicate_storage_volume; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6759 | -- |
| 6760 | |
| 6761 | COPY syndicate_storage_volume (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, name, description, blocksize, private, archive, cap_read_data, cap_write_data, cap_host_data, owner_id_id) FROM stdin; |
| 6762 | \. |
| 6763 | |
| 6764 | |
| 6765 | -- |
| 6766 | -- Name: syndicate_storage_volume_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6767 | -- |
| 6768 | |
| 6769 | SELECT pg_catalog.setval('syndicate_storage_volume_id_seq', 1, false); |
| 6770 | |
| 6771 | |
| 6772 | -- |
| 6773 | -- Data for Name: syndicate_storage_volumeaccessright; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6774 | -- |
| 6775 | |
| 6776 | COPY syndicate_storage_volumeaccessright (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, cap_read_data, cap_write_data, cap_host_data, owner_id_id, volume_id) FROM stdin; |
| 6777 | \. |
| 6778 | |
| 6779 | |
| 6780 | -- |
| 6781 | -- Name: syndicate_storage_volumeaccessright_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6782 | -- |
| 6783 | |
| 6784 | SELECT pg_catalog.setval('syndicate_storage_volumeaccessright_id_seq', 1, false); |
| 6785 | |
| 6786 | |
| 6787 | -- |
| 6788 | -- Data for Name: syndicate_storage_volumeslice; Type: TABLE DATA; Schema: public; Owner: postgres |
| 6789 | -- |
| 6790 | |
| 6791 | COPY syndicate_storage_volumeslice (id, created, updated, enacted, policed, backend_register, backend_status, deleted, write_protect, lazy_blocked, no_sync, cap_read_data, cap_write_data, cap_host_data, "UG_portnum", "RG_portnum", credentials_blob, slice_id_id, volume_id_id) FROM stdin; |
| 6792 | \. |
| 6793 | |
| 6794 | |
| 6795 | -- |
| 6796 | -- Name: syndicate_storage_volumeslice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres |
| 6797 | -- |
| 6798 | |
| 6799 | SELECT pg_catalog.setval('syndicate_storage_volumeslice_id_seq', 1, false); |
| 6800 | |
| 6801 | |
| 6802 | -- |
| 6803 | -- Name: auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6804 | -- |
| 6805 | |
| 6806 | ALTER TABLE ONLY auth_group |
| 6807 | ADD CONSTRAINT auth_group_name_key UNIQUE (name); |
| 6808 | |
| 6809 | |
| 6810 | -- |
| 6811 | -- Name: auth_group_permissions_group_id_permission_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6812 | -- |
| 6813 | |
| 6814 | ALTER TABLE ONLY auth_group_permissions |
| 6815 | ADD CONSTRAINT auth_group_permissions_group_id_permission_id_key UNIQUE (group_id, permission_id); |
| 6816 | |
| 6817 | |
| 6818 | -- |
| 6819 | -- Name: auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6820 | -- |
| 6821 | |
| 6822 | ALTER TABLE ONLY auth_group_permissions |
| 6823 | ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); |
| 6824 | |
| 6825 | |
| 6826 | -- |
| 6827 | -- Name: auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6828 | -- |
| 6829 | |
| 6830 | ALTER TABLE ONLY auth_group |
| 6831 | ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); |
| 6832 | |
| 6833 | |
| 6834 | -- |
| 6835 | -- Name: auth_permission_content_type_id_codename_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6836 | -- |
| 6837 | |
| 6838 | ALTER TABLE ONLY auth_permission |
| 6839 | ADD CONSTRAINT auth_permission_content_type_id_codename_key UNIQUE (content_type_id, codename); |
| 6840 | |
| 6841 | |
| 6842 | -- |
| 6843 | -- Name: auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6844 | -- |
| 6845 | |
| 6846 | ALTER TABLE ONLY auth_permission |
| 6847 | ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); |
| 6848 | |
| 6849 | |
| 6850 | -- |
| 6851 | -- Name: core_account_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6852 | -- |
| 6853 | |
| 6854 | ALTER TABLE ONLY core_account |
| 6855 | ADD CONSTRAINT core_account_pkey PRIMARY KEY (id); |
| 6856 | |
| 6857 | |
| 6858 | -- |
| 6859 | -- Name: core_addresspool_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6860 | -- |
| 6861 | |
| 6862 | ALTER TABLE ONLY core_addresspool |
| 6863 | ADD CONSTRAINT core_addresspool_pkey PRIMARY KEY (id); |
| 6864 | |
| 6865 | |
| 6866 | -- |
| 6867 | -- Name: core_charge_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6868 | -- |
| 6869 | |
| 6870 | ALTER TABLE ONLY core_charge |
| 6871 | ADD CONSTRAINT core_charge_pkey PRIMARY KEY (id); |
| 6872 | |
| 6873 | |
| 6874 | -- |
| 6875 | -- Name: core_controller_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6876 | -- |
| 6877 | |
| 6878 | ALTER TABLE ONLY core_controller |
| 6879 | ADD CONSTRAINT core_controller_name_key UNIQUE (name); |
| 6880 | |
| 6881 | |
| 6882 | -- |
| 6883 | -- Name: core_controller_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6884 | -- |
| 6885 | |
| 6886 | ALTER TABLE ONLY core_controller |
| 6887 | ADD CONSTRAINT core_controller_pkey PRIMARY KEY (id); |
| 6888 | |
| 6889 | |
| 6890 | -- |
| 6891 | -- Name: core_controllercredential_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6892 | -- |
| 6893 | |
| 6894 | ALTER TABLE ONLY core_controllercredential |
| 6895 | ADD CONSTRAINT core_controllercredential_pkey PRIMARY KEY (id); |
| 6896 | |
| 6897 | |
| 6898 | -- |
| 6899 | -- Name: core_controllerdashboardview_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6900 | -- |
| 6901 | |
| 6902 | ALTER TABLE ONLY core_controllerdashboardview |
| 6903 | ADD CONSTRAINT core_controllerdashboardview_pkey PRIMARY KEY (id); |
| 6904 | |
| 6905 | |
| 6906 | -- |
| 6907 | -- Name: core_controllerimages_image_id_77d3516dbca0a5d3_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6908 | -- |
| 6909 | |
| 6910 | ALTER TABLE ONLY core_controllerimages |
| 6911 | ADD CONSTRAINT core_controllerimages_image_id_77d3516dbca0a5d3_uniq UNIQUE (image_id, controller_id); |
| 6912 | |
| 6913 | |
| 6914 | -- |
| 6915 | -- Name: core_controllerimages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6916 | -- |
| 6917 | |
| 6918 | ALTER TABLE ONLY core_controllerimages |
| 6919 | ADD CONSTRAINT core_controllerimages_pkey PRIMARY KEY (id); |
| 6920 | |
| 6921 | |
| 6922 | -- |
| 6923 | -- Name: core_controllernetwork_network_id_30ce4dc681f2844f_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6924 | -- |
| 6925 | |
| 6926 | ALTER TABLE ONLY core_controllernetwork |
| 6927 | ADD CONSTRAINT core_controllernetwork_network_id_30ce4dc681f2844f_uniq UNIQUE (network_id, controller_id); |
| 6928 | |
| 6929 | |
| 6930 | -- |
| 6931 | -- Name: core_controllernetwork_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6932 | -- |
| 6933 | |
| 6934 | ALTER TABLE ONLY core_controllernetwork |
| 6935 | ADD CONSTRAINT core_controllernetwork_pkey PRIMARY KEY (id); |
| 6936 | |
| 6937 | |
| 6938 | -- |
| 6939 | -- Name: core_controllerrole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6940 | -- |
| 6941 | |
| 6942 | ALTER TABLE ONLY core_controllerrole |
| 6943 | ADD CONSTRAINT core_controllerrole_pkey PRIMARY KEY (id); |
| 6944 | |
| 6945 | |
| 6946 | -- |
| 6947 | -- Name: core_controllerrole_role_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6948 | -- |
| 6949 | |
| 6950 | ALTER TABLE ONLY core_controllerrole |
| 6951 | ADD CONSTRAINT core_controllerrole_role_key UNIQUE (role); |
| 6952 | |
| 6953 | |
| 6954 | -- |
| 6955 | -- Name: core_controllersite_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6956 | -- |
| 6957 | |
| 6958 | ALTER TABLE ONLY core_controllersite |
| 6959 | ADD CONSTRAINT core_controllersite_pkey PRIMARY KEY (id); |
| 6960 | |
| 6961 | |
| 6962 | -- |
| 6963 | -- Name: core_controllersite_site_id_22f56d79564bc81b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6964 | -- |
| 6965 | |
| 6966 | ALTER TABLE ONLY core_controllersite |
| 6967 | ADD CONSTRAINT core_controllersite_site_id_22f56d79564bc81b_uniq UNIQUE (site_id, controller_id); |
| 6968 | |
| 6969 | |
| 6970 | -- |
| 6971 | -- Name: core_controllersiteprivileg_controller_id_5d0f19c7a7ceb9e5_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6972 | -- |
| 6973 | |
| 6974 | ALTER TABLE ONLY core_controllersiteprivilege |
| 6975 | ADD CONSTRAINT core_controllersiteprivileg_controller_id_5d0f19c7a7ceb9e5_uniq UNIQUE (controller_id, site_privilege_id, role_id); |
| 6976 | |
| 6977 | |
| 6978 | -- |
| 6979 | -- Name: core_controllersiteprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6980 | -- |
| 6981 | |
| 6982 | ALTER TABLE ONLY core_controllersiteprivilege |
| 6983 | ADD CONSTRAINT core_controllersiteprivilege_pkey PRIMARY KEY (id); |
| 6984 | |
| 6985 | |
| 6986 | -- |
| 6987 | -- Name: core_controllerslice_controller_id_427703e66574ab83_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6988 | -- |
| 6989 | |
| 6990 | ALTER TABLE ONLY core_controllerslice |
| 6991 | ADD CONSTRAINT core_controllerslice_controller_id_427703e66574ab83_uniq UNIQUE (controller_id, slice_id); |
| 6992 | |
| 6993 | |
| 6994 | -- |
| 6995 | -- Name: core_controllerslice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 6996 | -- |
| 6997 | |
| 6998 | ALTER TABLE ONLY core_controllerslice |
| 6999 | ADD CONSTRAINT core_controllerslice_pkey PRIMARY KEY (id); |
| 7000 | |
| 7001 | |
| 7002 | -- |
| 7003 | -- Name: core_controllersliceprivile_controller_id_4e8a6f6f999d67c3_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7004 | -- |
| 7005 | |
| 7006 | ALTER TABLE ONLY core_controllersliceprivilege |
| 7007 | ADD CONSTRAINT core_controllersliceprivile_controller_id_4e8a6f6f999d67c3_uniq UNIQUE (controller_id, slice_privilege_id); |
| 7008 | |
| 7009 | |
| 7010 | -- |
| 7011 | -- Name: core_controllersliceprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7012 | -- |
| 7013 | |
| 7014 | ALTER TABLE ONLY core_controllersliceprivilege |
| 7015 | ADD CONSTRAINT core_controllersliceprivilege_pkey PRIMARY KEY (id); |
| 7016 | |
| 7017 | |
| 7018 | -- |
| 7019 | -- Name: core_controlleruser_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7020 | -- |
| 7021 | |
| 7022 | ALTER TABLE ONLY core_controlleruser |
| 7023 | ADD CONSTRAINT core_controlleruser_pkey PRIMARY KEY (id); |
| 7024 | |
| 7025 | |
| 7026 | -- |
| 7027 | -- Name: core_controlleruser_user_id_3beb039133bd099b_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7028 | -- |
| 7029 | |
| 7030 | ALTER TABLE ONLY core_controlleruser |
| 7031 | ADD CONSTRAINT core_controlleruser_user_id_3beb039133bd099b_uniq UNIQUE (user_id, controller_id); |
| 7032 | |
| 7033 | |
| 7034 | -- |
| 7035 | -- Name: core_dashboardview_deployment_dashboardview_id_deployment_i_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7036 | -- |
| 7037 | |
| 7038 | ALTER TABLE ONLY core_dashboardview_deployments |
| 7039 | ADD CONSTRAINT core_dashboardview_deployment_dashboardview_id_deployment_i_key UNIQUE (dashboardview_id, deployment_id); |
| 7040 | |
| 7041 | |
| 7042 | -- |
| 7043 | -- Name: core_dashboardview_deployments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7044 | -- |
| 7045 | |
| 7046 | ALTER TABLE ONLY core_dashboardview_deployments |
| 7047 | ADD CONSTRAINT core_dashboardview_deployments_pkey PRIMARY KEY (id); |
| 7048 | |
| 7049 | |
| 7050 | -- |
| 7051 | -- Name: core_dashboardview_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7052 | -- |
| 7053 | |
| 7054 | ALTER TABLE ONLY core_dashboardview |
| 7055 | ADD CONSTRAINT core_dashboardview_name_key UNIQUE (name); |
| 7056 | |
| 7057 | |
| 7058 | -- |
| 7059 | -- Name: core_dashboardview_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7060 | -- |
| 7061 | |
| 7062 | ALTER TABLE ONLY core_dashboardview |
| 7063 | ADD CONSTRAINT core_dashboardview_pkey PRIMARY KEY (id); |
| 7064 | |
| 7065 | |
| 7066 | -- |
| 7067 | -- Name: core_deployment_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7068 | -- |
| 7069 | |
| 7070 | ALTER TABLE ONLY core_deployment |
| 7071 | ADD CONSTRAINT core_deployment_name_key UNIQUE (name); |
| 7072 | |
| 7073 | |
| 7074 | -- |
| 7075 | -- Name: core_deployment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7076 | -- |
| 7077 | |
| 7078 | ALTER TABLE ONLY core_deployment |
| 7079 | ADD CONSTRAINT core_deployment_pkey PRIMARY KEY (id); |
| 7080 | |
| 7081 | |
| 7082 | -- |
| 7083 | -- Name: core_deploymentprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7084 | -- |
| 7085 | |
| 7086 | ALTER TABLE ONLY core_deploymentprivilege |
| 7087 | ADD CONSTRAINT core_deploymentprivilege_pkey PRIMARY KEY (id); |
| 7088 | |
| 7089 | |
| 7090 | -- |
| 7091 | -- Name: core_deploymentprivilege_user_id_8f49da97c7cff06_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7092 | -- |
| 7093 | |
| 7094 | ALTER TABLE ONLY core_deploymentprivilege |
| 7095 | ADD CONSTRAINT core_deploymentprivilege_user_id_8f49da97c7cff06_uniq UNIQUE (user_id, deployment_id, role_id); |
| 7096 | |
| 7097 | |
| 7098 | -- |
| 7099 | -- Name: core_deploymentrole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7100 | -- |
| 7101 | |
| 7102 | ALTER TABLE ONLY core_deploymentrole |
| 7103 | ADD CONSTRAINT core_deploymentrole_pkey PRIMARY KEY (id); |
| 7104 | |
| 7105 | |
| 7106 | -- |
| 7107 | -- Name: core_deploymentrole_role_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7108 | -- |
| 7109 | |
| 7110 | ALTER TABLE ONLY core_deploymentrole |
| 7111 | ADD CONSTRAINT core_deploymentrole_role_key UNIQUE (role); |
| 7112 | |
| 7113 | |
| 7114 | -- |
| 7115 | -- Name: core_diag_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7116 | -- |
| 7117 | |
| 7118 | ALTER TABLE ONLY core_diag |
| 7119 | ADD CONSTRAINT core_diag_pkey PRIMARY KEY (id); |
| 7120 | |
| 7121 | |
| 7122 | -- |
| 7123 | -- Name: core_flavor_deployments_flavor_id_deployment_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7124 | -- |
| 7125 | |
| 7126 | ALTER TABLE ONLY core_flavor_deployments |
| 7127 | ADD CONSTRAINT core_flavor_deployments_flavor_id_deployment_id_key UNIQUE (flavor_id, deployment_id); |
| 7128 | |
| 7129 | |
| 7130 | -- |
| 7131 | -- Name: core_flavor_deployments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7132 | -- |
| 7133 | |
| 7134 | ALTER TABLE ONLY core_flavor_deployments |
| 7135 | ADD CONSTRAINT core_flavor_deployments_pkey PRIMARY KEY (id); |
| 7136 | |
| 7137 | |
| 7138 | -- |
| 7139 | -- Name: core_flavor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7140 | -- |
| 7141 | |
| 7142 | ALTER TABLE ONLY core_flavor |
| 7143 | ADD CONSTRAINT core_flavor_pkey PRIMARY KEY (id); |
| 7144 | |
| 7145 | |
| 7146 | -- |
| 7147 | -- Name: core_image_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7148 | -- |
| 7149 | |
| 7150 | ALTER TABLE ONLY core_image |
| 7151 | ADD CONSTRAINT core_image_name_key UNIQUE (name); |
| 7152 | |
| 7153 | |
| 7154 | -- |
| 7155 | -- Name: core_image_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7156 | -- |
| 7157 | |
| 7158 | ALTER TABLE ONLY core_image |
| 7159 | ADD CONSTRAINT core_image_pkey PRIMARY KEY (id); |
| 7160 | |
| 7161 | |
| 7162 | -- |
| 7163 | -- Name: core_imagedeployments_image_id_3bc8a23925d399ff_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7164 | -- |
| 7165 | |
| 7166 | ALTER TABLE ONLY core_imagedeployments |
| 7167 | ADD CONSTRAINT core_imagedeployments_image_id_3bc8a23925d399ff_uniq UNIQUE (image_id, deployment_id); |
| 7168 | |
| 7169 | |
| 7170 | -- |
| 7171 | -- Name: core_imagedeployments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7172 | -- |
| 7173 | |
| 7174 | ALTER TABLE ONLY core_imagedeployments |
| 7175 | ADD CONSTRAINT core_imagedeployments_pkey PRIMARY KEY (id); |
| 7176 | |
| 7177 | |
| 7178 | -- |
| 7179 | -- Name: core_instance_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7180 | -- |
| 7181 | |
| 7182 | ALTER TABLE ONLY core_instance |
| 7183 | ADD CONSTRAINT core_instance_pkey PRIMARY KEY (id); |
| 7184 | |
| 7185 | |
| 7186 | -- |
| 7187 | -- Name: core_invoice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7188 | -- |
| 7189 | |
| 7190 | ALTER TABLE ONLY core_invoice |
| 7191 | ADD CONSTRAINT core_invoice_pkey PRIMARY KEY (id); |
| 7192 | |
| 7193 | |
| 7194 | -- |
| 7195 | -- Name: core_network_permitted_slices_network_id_slice_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7196 | -- |
| 7197 | |
| 7198 | ALTER TABLE ONLY core_network_permitted_slices |
| 7199 | ADD CONSTRAINT core_network_permitted_slices_network_id_slice_id_key UNIQUE (network_id, slice_id); |
| 7200 | |
| 7201 | |
| 7202 | -- |
| 7203 | -- Name: core_network_permitted_slices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7204 | -- |
| 7205 | |
| 7206 | ALTER TABLE ONLY core_network_permitted_slices |
| 7207 | ADD CONSTRAINT core_network_permitted_slices_pkey PRIMARY KEY (id); |
| 7208 | |
| 7209 | |
| 7210 | -- |
| 7211 | -- Name: core_network_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7212 | -- |
| 7213 | |
| 7214 | ALTER TABLE ONLY core_network |
| 7215 | ADD CONSTRAINT core_network_pkey PRIMARY KEY (id); |
| 7216 | |
| 7217 | |
| 7218 | -- |
| 7219 | -- Name: core_networkparameter_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7220 | -- |
| 7221 | |
| 7222 | ALTER TABLE ONLY core_networkparameter |
| 7223 | ADD CONSTRAINT core_networkparameter_pkey PRIMARY KEY (id); |
| 7224 | |
| 7225 | |
| 7226 | -- |
| 7227 | -- Name: core_networkparametertype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7228 | -- |
| 7229 | |
| 7230 | ALTER TABLE ONLY core_networkparametertype |
| 7231 | ADD CONSTRAINT core_networkparametertype_pkey PRIMARY KEY (id); |
| 7232 | |
| 7233 | |
| 7234 | -- |
| 7235 | -- Name: core_networkslice_network_id_78984d02ac7c1fb3_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7236 | -- |
| 7237 | |
| 7238 | ALTER TABLE ONLY core_networkslice |
| 7239 | ADD CONSTRAINT core_networkslice_network_id_78984d02ac7c1fb3_uniq UNIQUE (network_id, slice_id); |
| 7240 | |
| 7241 | |
| 7242 | -- |
| 7243 | -- Name: core_networkslice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7244 | -- |
| 7245 | |
| 7246 | ALTER TABLE ONLY core_networkslice |
| 7247 | ADD CONSTRAINT core_networkslice_pkey PRIMARY KEY (id); |
| 7248 | |
| 7249 | |
| 7250 | -- |
| 7251 | -- Name: core_networktemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7252 | -- |
| 7253 | |
| 7254 | ALTER TABLE ONLY core_networktemplate |
| 7255 | ADD CONSTRAINT core_networktemplate_pkey PRIMARY KEY (id); |
| 7256 | |
| 7257 | |
| 7258 | -- |
| 7259 | -- Name: core_node_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7260 | -- |
| 7261 | |
| 7262 | ALTER TABLE ONLY core_node |
| 7263 | ADD CONSTRAINT core_node_name_key UNIQUE (name); |
| 7264 | |
| 7265 | |
| 7266 | -- |
| 7267 | -- Name: core_node_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7268 | -- |
| 7269 | |
| 7270 | ALTER TABLE ONLY core_node |
| 7271 | ADD CONSTRAINT core_node_pkey PRIMARY KEY (id); |
| 7272 | |
| 7273 | |
| 7274 | -- |
| 7275 | -- Name: core_nodelabel_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7276 | -- |
| 7277 | |
| 7278 | ALTER TABLE ONLY core_nodelabel |
| 7279 | ADD CONSTRAINT core_nodelabel_name_key UNIQUE (name); |
| 7280 | |
| 7281 | |
| 7282 | -- |
| 7283 | -- Name: core_nodelabel_node_nodelabel_id_node_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7284 | -- |
| 7285 | |
| 7286 | ALTER TABLE ONLY core_nodelabel_node |
| 7287 | ADD CONSTRAINT core_nodelabel_node_nodelabel_id_node_id_key UNIQUE (nodelabel_id, node_id); |
| 7288 | |
| 7289 | |
| 7290 | -- |
| 7291 | -- Name: core_nodelabel_node_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7292 | -- |
| 7293 | |
| 7294 | ALTER TABLE ONLY core_nodelabel_node |
| 7295 | ADD CONSTRAINT core_nodelabel_node_pkey PRIMARY KEY (id); |
| 7296 | |
| 7297 | |
| 7298 | -- |
| 7299 | -- Name: core_nodelabel_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7300 | -- |
| 7301 | |
| 7302 | ALTER TABLE ONLY core_nodelabel |
| 7303 | ADD CONSTRAINT core_nodelabel_pkey PRIMARY KEY (id); |
| 7304 | |
| 7305 | |
| 7306 | -- |
| 7307 | -- Name: core_payment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7308 | -- |
| 7309 | |
| 7310 | ALTER TABLE ONLY core_payment |
| 7311 | ADD CONSTRAINT core_payment_pkey PRIMARY KEY (id); |
| 7312 | |
| 7313 | |
| 7314 | -- |
| 7315 | -- Name: core_port_network_id_693ab091ccd5a89a_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7316 | -- |
| 7317 | |
| 7318 | ALTER TABLE ONLY core_port |
| 7319 | ADD CONSTRAINT core_port_network_id_693ab091ccd5a89a_uniq UNIQUE (network_id, instance_id); |
| 7320 | |
| 7321 | |
| 7322 | -- |
| 7323 | -- Name: core_port_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7324 | -- |
| 7325 | |
| 7326 | ALTER TABLE ONLY core_port |
| 7327 | ADD CONSTRAINT core_port_pkey PRIMARY KEY (id); |
| 7328 | |
| 7329 | |
| 7330 | -- |
| 7331 | -- Name: core_program_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7332 | -- |
| 7333 | |
| 7334 | ALTER TABLE ONLY core_program |
| 7335 | ADD CONSTRAINT core_program_pkey PRIMARY KEY (id); |
| 7336 | |
| 7337 | |
| 7338 | -- |
| 7339 | -- Name: core_project_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7340 | -- |
| 7341 | |
| 7342 | ALTER TABLE ONLY core_project |
| 7343 | ADD CONSTRAINT core_project_name_key UNIQUE (name); |
| 7344 | |
| 7345 | |
| 7346 | -- |
| 7347 | -- Name: core_project_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7348 | -- |
| 7349 | |
| 7350 | ALTER TABLE ONLY core_project |
| 7351 | ADD CONSTRAINT core_project_pkey PRIMARY KEY (id); |
| 7352 | |
| 7353 | |
| 7354 | -- |
| 7355 | -- Name: core_reservation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7356 | -- |
| 7357 | |
| 7358 | ALTER TABLE ONLY core_reservation |
| 7359 | ADD CONSTRAINT core_reservation_pkey PRIMARY KEY (id); |
| 7360 | |
| 7361 | |
| 7362 | -- |
| 7363 | -- Name: core_reservedresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7364 | -- |
| 7365 | |
| 7366 | ALTER TABLE ONLY core_reservedresource |
| 7367 | ADD CONSTRAINT core_reservedresource_pkey PRIMARY KEY (id); |
| 7368 | |
| 7369 | |
| 7370 | -- |
| 7371 | -- Name: core_role_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7372 | -- |
| 7373 | |
| 7374 | ALTER TABLE ONLY core_role |
| 7375 | ADD CONSTRAINT core_role_pkey PRIMARY KEY (id); |
| 7376 | |
| 7377 | |
| 7378 | -- |
| 7379 | -- Name: core_router_networks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7380 | -- |
| 7381 | |
| 7382 | ALTER TABLE ONLY core_router_networks |
| 7383 | ADD CONSTRAINT core_router_networks_pkey PRIMARY KEY (id); |
| 7384 | |
| 7385 | |
| 7386 | -- |
| 7387 | -- Name: core_router_networks_router_id_network_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7388 | -- |
| 7389 | |
| 7390 | ALTER TABLE ONLY core_router_networks |
| 7391 | ADD CONSTRAINT core_router_networks_router_id_network_id_key UNIQUE (router_id, network_id); |
| 7392 | |
| 7393 | |
| 7394 | -- |
| 7395 | -- Name: core_router_permittedNetworks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7396 | -- |
| 7397 | |
| 7398 | ALTER TABLE ONLY "core_router_permittedNetworks" |
| 7399 | ADD CONSTRAINT "core_router_permittedNetworks_pkey" PRIMARY KEY (id); |
| 7400 | |
| 7401 | |
| 7402 | -- |
| 7403 | -- Name: core_router_permittedNetworks_router_id_network_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7404 | -- |
| 7405 | |
| 7406 | ALTER TABLE ONLY "core_router_permittedNetworks" |
| 7407 | ADD CONSTRAINT "core_router_permittedNetworks_router_id_network_id_key" UNIQUE (router_id, network_id); |
| 7408 | |
| 7409 | |
| 7410 | -- |
| 7411 | -- Name: core_router_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7412 | -- |
| 7413 | |
| 7414 | ALTER TABLE ONLY core_router |
| 7415 | ADD CONSTRAINT core_router_pkey PRIMARY KEY (id); |
| 7416 | |
| 7417 | |
| 7418 | -- |
| 7419 | -- Name: core_service_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7420 | -- |
| 7421 | |
| 7422 | ALTER TABLE ONLY core_service |
| 7423 | ADD CONSTRAINT core_service_pkey PRIMARY KEY (id); |
| 7424 | |
| 7425 | |
| 7426 | -- |
| 7427 | -- Name: core_serviceattribute_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7428 | -- |
| 7429 | |
| 7430 | ALTER TABLE ONLY core_serviceattribute |
| 7431 | ADD CONSTRAINT core_serviceattribute_pkey PRIMARY KEY (id); |
| 7432 | |
| 7433 | |
| 7434 | -- |
| 7435 | -- Name: core_serviceclass_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7436 | -- |
| 7437 | |
| 7438 | ALTER TABLE ONLY core_serviceclass |
| 7439 | ADD CONSTRAINT core_serviceclass_pkey PRIMARY KEY (id); |
| 7440 | |
| 7441 | |
| 7442 | -- |
| 7443 | -- Name: core_serviceclass_upgradeFrom_from_serviceclass_id_to_servi_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7444 | -- |
| 7445 | |
| 7446 | ALTER TABLE ONLY "core_serviceclass_upgradeFrom" |
| 7447 | ADD CONSTRAINT "core_serviceclass_upgradeFrom_from_serviceclass_id_to_servi_key" UNIQUE (from_serviceclass_id, to_serviceclass_id); |
| 7448 | |
| 7449 | |
| 7450 | -- |
| 7451 | -- Name: core_serviceclass_upgradeFrom_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7452 | -- |
| 7453 | |
| 7454 | ALTER TABLE ONLY "core_serviceclass_upgradeFrom" |
| 7455 | ADD CONSTRAINT "core_serviceclass_upgradeFrom_pkey" PRIMARY KEY (id); |
| 7456 | |
| 7457 | |
| 7458 | -- |
| 7459 | -- Name: core_serviceprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7460 | -- |
| 7461 | |
| 7462 | ALTER TABLE ONLY core_serviceprivilege |
| 7463 | ADD CONSTRAINT core_serviceprivilege_pkey PRIMARY KEY (id); |
| 7464 | |
| 7465 | |
| 7466 | -- |
| 7467 | -- Name: core_serviceprivilege_user_id_3e7ef04b1340e86c_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7468 | -- |
| 7469 | |
| 7470 | ALTER TABLE ONLY core_serviceprivilege |
| 7471 | ADD CONSTRAINT core_serviceprivilege_user_id_3e7ef04b1340e86c_uniq UNIQUE (user_id, service_id, role_id); |
| 7472 | |
| 7473 | |
| 7474 | -- |
| 7475 | -- Name: core_serviceresource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7476 | -- |
| 7477 | |
| 7478 | ALTER TABLE ONLY core_serviceresource |
| 7479 | ADD CONSTRAINT core_serviceresource_pkey PRIMARY KEY (id); |
| 7480 | |
| 7481 | |
| 7482 | -- |
| 7483 | -- Name: core_servicerole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7484 | -- |
| 7485 | |
| 7486 | ALTER TABLE ONLY core_servicerole |
| 7487 | ADD CONSTRAINT core_servicerole_pkey PRIMARY KEY (id); |
| 7488 | |
| 7489 | |
| 7490 | -- |
| 7491 | -- Name: core_servicerole_role_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7492 | -- |
| 7493 | |
| 7494 | ALTER TABLE ONLY core_servicerole |
| 7495 | ADD CONSTRAINT core_servicerole_role_key UNIQUE (role); |
| 7496 | |
| 7497 | |
| 7498 | -- |
| 7499 | -- Name: core_site_login_base_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7500 | -- |
| 7501 | |
| 7502 | ALTER TABLE ONLY core_site |
| 7503 | ADD CONSTRAINT core_site_login_base_key UNIQUE (login_base); |
| 7504 | |
| 7505 | |
| 7506 | -- |
| 7507 | -- Name: core_site_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7508 | -- |
| 7509 | |
| 7510 | ALTER TABLE ONLY core_site |
| 7511 | ADD CONSTRAINT core_site_pkey PRIMARY KEY (id); |
| 7512 | |
| 7513 | |
| 7514 | -- |
| 7515 | -- Name: core_sitecredential_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7516 | -- |
| 7517 | |
| 7518 | ALTER TABLE ONLY core_sitecredential |
| 7519 | ADD CONSTRAINT core_sitecredential_pkey PRIMARY KEY (id); |
| 7520 | |
| 7521 | |
| 7522 | -- |
| 7523 | -- Name: core_sitedeployment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7524 | -- |
| 7525 | |
| 7526 | ALTER TABLE ONLY core_sitedeployment |
| 7527 | ADD CONSTRAINT core_sitedeployment_pkey PRIMARY KEY (id); |
| 7528 | |
| 7529 | |
| 7530 | -- |
| 7531 | -- Name: core_sitedeployment_site_id_ed533b8a1954fbb_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7532 | -- |
| 7533 | |
| 7534 | ALTER TABLE ONLY core_sitedeployment |
| 7535 | ADD CONSTRAINT core_sitedeployment_site_id_ed533b8a1954fbb_uniq UNIQUE (site_id, deployment_id, controller_id); |
| 7536 | |
| 7537 | |
| 7538 | -- |
| 7539 | -- Name: core_siteprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7540 | -- |
| 7541 | |
| 7542 | ALTER TABLE ONLY core_siteprivilege |
| 7543 | ADD CONSTRAINT core_siteprivilege_pkey PRIMARY KEY (id); |
| 7544 | |
| 7545 | |
| 7546 | -- |
| 7547 | -- Name: core_siterole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7548 | -- |
| 7549 | |
| 7550 | ALTER TABLE ONLY core_siterole |
| 7551 | ADD CONSTRAINT core_siterole_pkey PRIMARY KEY (id); |
| 7552 | |
| 7553 | |
| 7554 | -- |
| 7555 | -- Name: core_siterole_role_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7556 | -- |
| 7557 | |
| 7558 | ALTER TABLE ONLY core_siterole |
| 7559 | ADD CONSTRAINT core_siterole_role_key UNIQUE (role); |
| 7560 | |
| 7561 | |
| 7562 | -- |
| 7563 | -- Name: core_slice_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7564 | -- |
| 7565 | |
| 7566 | ALTER TABLE ONLY core_slice |
| 7567 | ADD CONSTRAINT core_slice_name_key UNIQUE (name); |
| 7568 | |
| 7569 | |
| 7570 | -- |
| 7571 | -- Name: core_slice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7572 | -- |
| 7573 | |
| 7574 | ALTER TABLE ONLY core_slice |
| 7575 | ADD CONSTRAINT core_slice_pkey PRIMARY KEY (id); |
| 7576 | |
| 7577 | |
| 7578 | -- |
| 7579 | -- Name: core_slicecredential_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7580 | -- |
| 7581 | |
| 7582 | ALTER TABLE ONLY core_slicecredential |
| 7583 | ADD CONSTRAINT core_slicecredential_pkey PRIMARY KEY (id); |
| 7584 | |
| 7585 | |
| 7586 | -- |
| 7587 | -- Name: core_sliceprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7588 | -- |
| 7589 | |
| 7590 | ALTER TABLE ONLY core_sliceprivilege |
| 7591 | ADD CONSTRAINT core_sliceprivilege_pkey PRIMARY KEY (id); |
| 7592 | |
| 7593 | |
| 7594 | -- |
| 7595 | -- Name: core_sliceprivilege_user_id_6bed734e37df8596_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7596 | -- |
| 7597 | |
| 7598 | ALTER TABLE ONLY core_sliceprivilege |
| 7599 | ADD CONSTRAINT core_sliceprivilege_user_id_6bed734e37df8596_uniq UNIQUE (user_id, slice_id, role_id); |
| 7600 | |
| 7601 | |
| 7602 | -- |
| 7603 | -- Name: core_slicerole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7604 | -- |
| 7605 | |
| 7606 | ALTER TABLE ONLY core_slicerole |
| 7607 | ADD CONSTRAINT core_slicerole_pkey PRIMARY KEY (id); |
| 7608 | |
| 7609 | |
| 7610 | -- |
| 7611 | -- Name: core_slicerole_role_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7612 | -- |
| 7613 | |
| 7614 | ALTER TABLE ONLY core_slicerole |
| 7615 | ADD CONSTRAINT core_slicerole_role_key UNIQUE (role); |
| 7616 | |
| 7617 | |
| 7618 | -- |
| 7619 | -- Name: core_slicetag_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7620 | -- |
| 7621 | |
| 7622 | ALTER TABLE ONLY core_slicetag |
| 7623 | ADD CONSTRAINT core_slicetag_pkey PRIMARY KEY (id); |
| 7624 | |
| 7625 | |
| 7626 | -- |
| 7627 | -- Name: core_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7628 | -- |
| 7629 | |
| 7630 | ALTER TABLE ONLY core_tag |
| 7631 | ADD CONSTRAINT core_tag_pkey PRIMARY KEY (id); |
| 7632 | |
| 7633 | |
| 7634 | -- |
| 7635 | -- Name: core_tenant_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7636 | -- |
| 7637 | |
| 7638 | ALTER TABLE ONLY core_tenant |
| 7639 | ADD CONSTRAINT core_tenant_pkey PRIMARY KEY (id); |
| 7640 | |
| 7641 | |
| 7642 | -- |
| 7643 | -- Name: core_tenantattribute_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7644 | -- |
| 7645 | |
| 7646 | ALTER TABLE ONLY core_tenantattribute |
| 7647 | ADD CONSTRAINT core_tenantattribute_pkey PRIMARY KEY (id); |
| 7648 | |
| 7649 | |
| 7650 | -- |
| 7651 | -- Name: core_tenantroot_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7652 | -- |
| 7653 | |
| 7654 | ALTER TABLE ONLY core_tenantroot |
| 7655 | ADD CONSTRAINT core_tenantroot_pkey PRIMARY KEY (id); |
| 7656 | |
| 7657 | |
| 7658 | -- |
| 7659 | -- Name: core_tenantrootprivilege_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7660 | -- |
| 7661 | |
| 7662 | ALTER TABLE ONLY core_tenantrootprivilege |
| 7663 | ADD CONSTRAINT core_tenantrootprivilege_pkey PRIMARY KEY (id); |
| 7664 | |
| 7665 | |
| 7666 | -- |
| 7667 | -- Name: core_tenantrootprivilege_user_id_2bfebdce70c89f50_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7668 | -- |
| 7669 | |
| 7670 | ALTER TABLE ONLY core_tenantrootprivilege |
| 7671 | ADD CONSTRAINT core_tenantrootprivilege_user_id_2bfebdce70c89f50_uniq UNIQUE (user_id, tenant_root_id, role_id); |
| 7672 | |
| 7673 | |
| 7674 | -- |
| 7675 | -- Name: core_tenantrootrole_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7676 | -- |
| 7677 | |
| 7678 | ALTER TABLE ONLY core_tenantrootrole |
| 7679 | ADD CONSTRAINT core_tenantrootrole_pkey PRIMARY KEY (id); |
| 7680 | |
| 7681 | |
| 7682 | -- |
| 7683 | -- Name: core_tenantrootrole_role_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7684 | -- |
| 7685 | |
| 7686 | ALTER TABLE ONLY core_tenantrootrole |
| 7687 | ADD CONSTRAINT core_tenantrootrole_role_key UNIQUE (role); |
| 7688 | |
| 7689 | |
| 7690 | -- |
| 7691 | -- Name: core_usableobject_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7692 | -- |
| 7693 | |
| 7694 | ALTER TABLE ONLY core_usableobject |
| 7695 | ADD CONSTRAINT core_usableobject_pkey PRIMARY KEY (id); |
| 7696 | |
| 7697 | |
| 7698 | -- |
| 7699 | -- Name: core_user_email_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7700 | -- |
| 7701 | |
| 7702 | ALTER TABLE ONLY core_user |
| 7703 | ADD CONSTRAINT core_user_email_key UNIQUE (email); |
| 7704 | |
| 7705 | |
| 7706 | -- |
| 7707 | -- Name: core_user_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7708 | -- |
| 7709 | |
| 7710 | ALTER TABLE ONLY core_user |
| 7711 | ADD CONSTRAINT core_user_pkey PRIMARY KEY (id); |
| 7712 | |
| 7713 | |
| 7714 | -- |
| 7715 | -- Name: core_usercredential_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7716 | -- |
| 7717 | |
| 7718 | ALTER TABLE ONLY core_usercredential |
| 7719 | ADD CONSTRAINT core_usercredential_pkey PRIMARY KEY (id); |
| 7720 | |
| 7721 | |
| 7722 | -- |
| 7723 | -- Name: core_userdashboardview_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7724 | -- |
| 7725 | |
| 7726 | ALTER TABLE ONLY core_userdashboardview |
| 7727 | ADD CONSTRAINT core_userdashboardview_pkey PRIMARY KEY (id); |
| 7728 | |
| 7729 | |
| 7730 | -- |
| 7731 | -- Name: django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7732 | -- |
| 7733 | |
| 7734 | ALTER TABLE ONLY django_admin_log |
| 7735 | ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); |
| 7736 | |
| 7737 | |
| 7738 | -- |
| 7739 | -- Name: django_content_type_app_label_45f3b1d93ec8c61c_uniq; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7740 | -- |
| 7741 | |
| 7742 | ALTER TABLE ONLY django_content_type |
| 7743 | ADD CONSTRAINT django_content_type_app_label_45f3b1d93ec8c61c_uniq UNIQUE (app_label, model); |
| 7744 | |
| 7745 | |
| 7746 | -- |
| 7747 | -- Name: django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7748 | -- |
| 7749 | |
| 7750 | ALTER TABLE ONLY django_content_type |
| 7751 | ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); |
| 7752 | |
| 7753 | |
| 7754 | -- |
| 7755 | -- Name: django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7756 | -- |
| 7757 | |
| 7758 | ALTER TABLE ONLY django_migrations |
| 7759 | ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); |
| 7760 | |
| 7761 | |
| 7762 | -- |
| 7763 | -- Name: django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7764 | -- |
| 7765 | |
| 7766 | ALTER TABLE ONLY django_session |
| 7767 | ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); |
| 7768 | |
| 7769 | |
| 7770 | -- |
| 7771 | -- Name: hpc_accessmap_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7772 | -- |
| 7773 | |
| 7774 | ALTER TABLE ONLY hpc_accessmap |
| 7775 | ADD CONSTRAINT hpc_accessmap_pkey PRIMARY KEY (id); |
| 7776 | |
| 7777 | |
| 7778 | -- |
| 7779 | -- Name: hpc_cdnprefix_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7780 | -- |
| 7781 | |
| 7782 | ALTER TABLE ONLY hpc_cdnprefix |
| 7783 | ADD CONSTRAINT hpc_cdnprefix_pkey PRIMARY KEY (id); |
| 7784 | |
| 7785 | |
| 7786 | -- |
| 7787 | -- Name: hpc_contentprovider_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7788 | -- |
| 7789 | |
| 7790 | ALTER TABLE ONLY hpc_contentprovider |
| 7791 | ADD CONSTRAINT hpc_contentprovider_pkey PRIMARY KEY (id); |
| 7792 | |
| 7793 | |
| 7794 | -- |
| 7795 | -- Name: hpc_contentprovider_users_contentprovider_id_user_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7796 | -- |
| 7797 | |
| 7798 | ALTER TABLE ONLY hpc_contentprovider_users |
| 7799 | ADD CONSTRAINT hpc_contentprovider_users_contentprovider_id_user_id_key UNIQUE (contentprovider_id, user_id); |
| 7800 | |
| 7801 | |
| 7802 | -- |
| 7803 | -- Name: hpc_contentprovider_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7804 | -- |
| 7805 | |
| 7806 | ALTER TABLE ONLY hpc_contentprovider_users |
| 7807 | ADD CONSTRAINT hpc_contentprovider_users_pkey PRIMARY KEY (id); |
| 7808 | |
| 7809 | |
| 7810 | -- |
| 7811 | -- Name: hpc_hpchealthcheck_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7812 | -- |
| 7813 | |
| 7814 | ALTER TABLE ONLY hpc_hpchealthcheck |
| 7815 | ADD CONSTRAINT hpc_hpchealthcheck_pkey PRIMARY KEY (id); |
| 7816 | |
| 7817 | |
| 7818 | -- |
| 7819 | -- Name: hpc_hpcservice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7820 | -- |
| 7821 | |
| 7822 | ALTER TABLE ONLY hpc_hpcservice |
| 7823 | ADD CONSTRAINT hpc_hpcservice_pkey PRIMARY KEY (service_ptr_id); |
| 7824 | |
| 7825 | |
| 7826 | -- |
| 7827 | -- Name: hpc_originserver_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7828 | -- |
| 7829 | |
| 7830 | ALTER TABLE ONLY hpc_originserver |
| 7831 | ADD CONSTRAINT hpc_originserver_pkey PRIMARY KEY (id); |
| 7832 | |
| 7833 | |
| 7834 | -- |
| 7835 | -- Name: hpc_serviceprovider_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7836 | -- |
| 7837 | |
| 7838 | ALTER TABLE ONLY hpc_serviceprovider |
| 7839 | ADD CONSTRAINT hpc_serviceprovider_pkey PRIMARY KEY (id); |
| 7840 | |
| 7841 | |
| 7842 | -- |
| 7843 | -- Name: hpc_sitemap_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7844 | -- |
| 7845 | |
| 7846 | ALTER TABLE ONLY hpc_sitemap |
| 7847 | ADD CONSTRAINT hpc_sitemap_pkey PRIMARY KEY (id); |
| 7848 | |
| 7849 | |
| 7850 | -- |
| 7851 | -- Name: requestrouter_requestrouterservice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7852 | -- |
| 7853 | |
| 7854 | ALTER TABLE ONLY requestrouter_requestrouterservice |
| 7855 | ADD CONSTRAINT requestrouter_requestrouterservice_pkey PRIMARY KEY (service_ptr_id); |
| 7856 | |
| 7857 | |
| 7858 | -- |
| 7859 | -- Name: requestrouter_servicemap_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7860 | -- |
| 7861 | |
| 7862 | ALTER TABLE ONLY requestrouter_servicemap |
| 7863 | ADD CONSTRAINT requestrouter_servicemap_name_key UNIQUE (name); |
| 7864 | |
| 7865 | |
| 7866 | -- |
| 7867 | -- Name: requestrouter_servicemap_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7868 | -- |
| 7869 | |
| 7870 | ALTER TABLE ONLY requestrouter_servicemap |
| 7871 | ADD CONSTRAINT requestrouter_servicemap_pkey PRIMARY KEY (id); |
| 7872 | |
| 7873 | |
| 7874 | -- |
| 7875 | -- Name: syndicate_storage_slicesecret_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7876 | -- |
| 7877 | |
| 7878 | ALTER TABLE ONLY syndicate_storage_slicesecret |
| 7879 | ADD CONSTRAINT syndicate_storage_slicesecret_pkey PRIMARY KEY (id); |
| 7880 | |
| 7881 | |
| 7882 | -- |
| 7883 | -- Name: syndicate_storage_syndicateprincipal_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7884 | -- |
| 7885 | |
| 7886 | ALTER TABLE ONLY syndicate_storage_syndicateprincipal |
| 7887 | ADD CONSTRAINT syndicate_storage_syndicateprincipal_pkey PRIMARY KEY (id); |
| 7888 | |
| 7889 | |
| 7890 | -- |
| 7891 | -- Name: syndicate_storage_syndicateprincipal_principal_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7892 | -- |
| 7893 | |
| 7894 | ALTER TABLE ONLY syndicate_storage_syndicateprincipal |
| 7895 | ADD CONSTRAINT syndicate_storage_syndicateprincipal_principal_id_key UNIQUE (principal_id); |
| 7896 | |
| 7897 | |
| 7898 | -- |
| 7899 | -- Name: syndicate_storage_syndicateservice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7900 | -- |
| 7901 | |
| 7902 | ALTER TABLE ONLY syndicate_storage_syndicateservice |
| 7903 | ADD CONSTRAINT syndicate_storage_syndicateservice_pkey PRIMARY KEY (service_ptr_id); |
| 7904 | |
| 7905 | |
| 7906 | -- |
| 7907 | -- Name: syndicate_storage_volume_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7908 | -- |
| 7909 | |
| 7910 | ALTER TABLE ONLY syndicate_storage_volume |
| 7911 | ADD CONSTRAINT syndicate_storage_volume_pkey PRIMARY KEY (id); |
| 7912 | |
| 7913 | |
| 7914 | -- |
| 7915 | -- Name: syndicate_storage_volumeaccessright_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7916 | -- |
| 7917 | |
| 7918 | ALTER TABLE ONLY syndicate_storage_volumeaccessright |
| 7919 | ADD CONSTRAINT syndicate_storage_volumeaccessright_pkey PRIMARY KEY (id); |
| 7920 | |
| 7921 | |
| 7922 | -- |
| 7923 | -- Name: syndicate_storage_volumeslice_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: |
| 7924 | -- |
| 7925 | |
| 7926 | ALTER TABLE ONLY syndicate_storage_volumeslice |
| 7927 | ADD CONSTRAINT syndicate_storage_volumeslice_pkey PRIMARY KEY (id); |
| 7928 | |
| 7929 | |
| 7930 | -- |
| 7931 | -- Name: auth_group_permissions_0e939a4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7932 | -- |
| 7933 | |
| 7934 | CREATE INDEX auth_group_permissions_0e939a4f ON auth_group_permissions USING btree (group_id); |
| 7935 | |
| 7936 | |
| 7937 | -- |
| 7938 | -- Name: auth_group_permissions_8373b171; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7939 | -- |
| 7940 | |
| 7941 | CREATE INDEX auth_group_permissions_8373b171 ON auth_group_permissions USING btree (permission_id); |
| 7942 | |
| 7943 | |
| 7944 | -- |
| 7945 | -- Name: auth_permission_417f1b1c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7946 | -- |
| 7947 | |
| 7948 | CREATE INDEX auth_permission_417f1b1c ON auth_permission USING btree (content_type_id); |
| 7949 | |
| 7950 | |
| 7951 | -- |
| 7952 | -- Name: core_account_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7953 | -- |
| 7954 | |
| 7955 | CREATE INDEX core_account_9365d6e7 ON core_account USING btree (site_id); |
| 7956 | |
| 7957 | |
| 7958 | -- |
| 7959 | -- Name: core_charge_8a089c2a; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7960 | -- |
| 7961 | |
| 7962 | CREATE INDEX core_charge_8a089c2a ON core_charge USING btree (account_id); |
| 7963 | |
| 7964 | |
| 7965 | -- |
| 7966 | -- Name: core_charge_af31437c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7967 | -- |
| 7968 | |
| 7969 | CREATE INDEX core_charge_af31437c ON core_charge USING btree (object_id); |
| 7970 | |
| 7971 | |
| 7972 | -- |
| 7973 | -- Name: core_charge_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7974 | -- |
| 7975 | |
| 7976 | CREATE INDEX core_charge_be7f3a0f ON core_charge USING btree (slice_id); |
| 7977 | |
| 7978 | |
| 7979 | -- |
| 7980 | -- Name: core_charge_f1f5d967; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7981 | -- |
| 7982 | |
| 7983 | CREATE INDEX core_charge_f1f5d967 ON core_charge USING btree (invoice_id); |
| 7984 | |
| 7985 | |
| 7986 | -- |
| 7987 | -- Name: core_controller_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7988 | -- |
| 7989 | |
| 7990 | CREATE INDEX core_controller_5921cd4f ON core_controller USING btree (deployment_id); |
| 7991 | |
| 7992 | |
| 7993 | -- |
| 7994 | -- Name: core_controllercredential_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 7995 | -- |
| 7996 | |
| 7997 | CREATE INDEX core_controllercredential_a31c1112 ON core_controllercredential USING btree (controller_id); |
| 7998 | |
| 7999 | |
| 8000 | -- |
| 8001 | -- Name: core_controllercredential_b068931c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8002 | -- |
| 8003 | |
| 8004 | CREATE INDEX core_controllercredential_b068931c ON core_controllercredential USING btree (name); |
| 8005 | |
| 8006 | |
| 8007 | -- |
| 8008 | -- Name: core_controllerdashboardview_5da0369f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8009 | -- |
| 8010 | |
| 8011 | CREATE INDEX core_controllerdashboardview_5da0369f ON core_controllerdashboardview USING btree ("dashboardView_id"); |
| 8012 | |
| 8013 | |
| 8014 | -- |
| 8015 | -- Name: core_controllerdashboardview_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8016 | -- |
| 8017 | |
| 8018 | CREATE INDEX core_controllerdashboardview_a31c1112 ON core_controllerdashboardview USING btree (controller_id); |
| 8019 | |
| 8020 | |
| 8021 | -- |
| 8022 | -- Name: core_controllerimages_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8023 | -- |
| 8024 | |
| 8025 | CREATE INDEX core_controllerimages_a31c1112 ON core_controllerimages USING btree (controller_id); |
| 8026 | |
| 8027 | |
| 8028 | -- |
| 8029 | -- Name: core_controllerimages_f33175e6; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8030 | -- |
| 8031 | |
| 8032 | CREATE INDEX core_controllerimages_f33175e6 ON core_controllerimages USING btree (image_id); |
| 8033 | |
| 8034 | |
| 8035 | -- |
| 8036 | -- Name: core_controllernetwork_4e19114d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8037 | -- |
| 8038 | |
| 8039 | CREATE INDEX core_controllernetwork_4e19114d ON core_controllernetwork USING btree (network_id); |
| 8040 | |
| 8041 | |
| 8042 | -- |
| 8043 | -- Name: core_controllernetwork_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8044 | -- |
| 8045 | |
| 8046 | CREATE INDEX core_controllernetwork_a31c1112 ON core_controllernetwork USING btree (controller_id); |
| 8047 | |
| 8048 | |
| 8049 | -- |
| 8050 | -- Name: core_controllersite_38543614; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8051 | -- |
| 8052 | |
| 8053 | CREATE INDEX core_controllersite_38543614 ON core_controllersite USING btree (tenant_id); |
| 8054 | |
| 8055 | |
| 8056 | -- |
| 8057 | -- Name: core_controllersite_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8058 | -- |
| 8059 | |
| 8060 | CREATE INDEX core_controllersite_9365d6e7 ON core_controllersite USING btree (site_id); |
| 8061 | |
| 8062 | |
| 8063 | -- |
| 8064 | -- Name: core_controllersite_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8065 | -- |
| 8066 | |
| 8067 | CREATE INDEX core_controllersite_a31c1112 ON core_controllersite USING btree (controller_id); |
| 8068 | |
| 8069 | |
| 8070 | -- |
| 8071 | -- Name: core_controllersiteprivilege_28116b8e; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8072 | -- |
| 8073 | |
| 8074 | CREATE INDEX core_controllersiteprivilege_28116b8e ON core_controllersiteprivilege USING btree (site_privilege_id); |
| 8075 | |
| 8076 | |
| 8077 | -- |
| 8078 | -- Name: core_controllersiteprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8079 | -- |
| 8080 | |
| 8081 | CREATE INDEX core_controllersiteprivilege_84566833 ON core_controllersiteprivilege USING btree (role_id); |
| 8082 | |
| 8083 | |
| 8084 | -- |
| 8085 | -- Name: core_controllersiteprivilege_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8086 | -- |
| 8087 | |
| 8088 | CREATE INDEX core_controllersiteprivilege_a31c1112 ON core_controllersiteprivilege USING btree (controller_id); |
| 8089 | |
| 8090 | |
| 8091 | -- |
| 8092 | -- Name: core_controllerslice_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8093 | -- |
| 8094 | |
| 8095 | CREATE INDEX core_controllerslice_a31c1112 ON core_controllerslice USING btree (controller_id); |
| 8096 | |
| 8097 | |
| 8098 | -- |
| 8099 | -- Name: core_controllerslice_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8100 | -- |
| 8101 | |
| 8102 | CREATE INDEX core_controllerslice_be7f3a0f ON core_controllerslice USING btree (slice_id); |
| 8103 | |
| 8104 | |
| 8105 | -- |
| 8106 | -- Name: core_controllersliceprivilege_25740d9a; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8107 | -- |
| 8108 | |
| 8109 | CREATE INDEX core_controllersliceprivilege_25740d9a ON core_controllersliceprivilege USING btree (slice_privilege_id); |
| 8110 | |
| 8111 | |
| 8112 | -- |
| 8113 | -- Name: core_controllersliceprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8114 | -- |
| 8115 | |
| 8116 | CREATE INDEX core_controllersliceprivilege_84566833 ON core_controllersliceprivilege USING btree (role_id); |
| 8117 | |
| 8118 | |
| 8119 | -- |
| 8120 | -- Name: core_controllersliceprivilege_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8121 | -- |
| 8122 | |
| 8123 | CREATE INDEX core_controllersliceprivilege_a31c1112 ON core_controllersliceprivilege USING btree (controller_id); |
| 8124 | |
| 8125 | |
| 8126 | -- |
| 8127 | -- Name: core_controlleruser_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8128 | -- |
| 8129 | |
| 8130 | CREATE INDEX core_controlleruser_a31c1112 ON core_controlleruser USING btree (controller_id); |
| 8131 | |
| 8132 | |
| 8133 | -- |
| 8134 | -- Name: core_controlleruser_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8135 | -- |
| 8136 | |
| 8137 | CREATE INDEX core_controlleruser_e8701ad4 ON core_controlleruser USING btree (user_id); |
| 8138 | |
| 8139 | |
| 8140 | -- |
| 8141 | -- Name: core_dashboardview_deployments_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8142 | -- |
| 8143 | |
| 8144 | CREATE INDEX core_dashboardview_deployments_5921cd4f ON core_dashboardview_deployments USING btree (deployment_id); |
| 8145 | |
| 8146 | |
| 8147 | -- |
| 8148 | -- Name: core_dashboardview_deployments_79bd56c8; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8149 | -- |
| 8150 | |
| 8151 | CREATE INDEX core_dashboardview_deployments_79bd56c8 ON core_dashboardview_deployments USING btree (dashboardview_id); |
| 8152 | |
| 8153 | |
| 8154 | -- |
| 8155 | -- Name: core_deploymentprivilege_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8156 | -- |
| 8157 | |
| 8158 | CREATE INDEX core_deploymentprivilege_5921cd4f ON core_deploymentprivilege USING btree (deployment_id); |
| 8159 | |
| 8160 | |
| 8161 | -- |
| 8162 | -- Name: core_deploymentprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8163 | -- |
| 8164 | |
| 8165 | CREATE INDEX core_deploymentprivilege_84566833 ON core_deploymentprivilege USING btree (role_id); |
| 8166 | |
| 8167 | |
| 8168 | -- |
| 8169 | -- Name: core_deploymentprivilege_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8170 | -- |
| 8171 | |
| 8172 | CREATE INDEX core_deploymentprivilege_e8701ad4 ON core_deploymentprivilege USING btree (user_id); |
| 8173 | |
| 8174 | |
| 8175 | -- |
| 8176 | -- Name: core_flavor_deployments_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8177 | -- |
| 8178 | |
| 8179 | CREATE INDEX core_flavor_deployments_5921cd4f ON core_flavor_deployments USING btree (deployment_id); |
| 8180 | |
| 8181 | |
| 8182 | -- |
| 8183 | -- Name: core_flavor_deployments_dd3f198d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8184 | -- |
| 8185 | |
| 8186 | CREATE INDEX core_flavor_deployments_dd3f198d ON core_flavor_deployments USING btree (flavor_id); |
| 8187 | |
| 8188 | |
| 8189 | -- |
| 8190 | -- Name: core_imagedeployments_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8191 | -- |
| 8192 | |
| 8193 | CREATE INDEX core_imagedeployments_5921cd4f ON core_imagedeployments USING btree (deployment_id); |
| 8194 | |
| 8195 | |
| 8196 | -- |
| 8197 | -- Name: core_imagedeployments_f33175e6; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8198 | -- |
| 8199 | |
| 8200 | CREATE INDEX core_imagedeployments_f33175e6 ON core_imagedeployments USING btree (image_id); |
| 8201 | |
| 8202 | |
| 8203 | -- |
| 8204 | -- Name: core_instance_3700153c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8205 | -- |
| 8206 | |
| 8207 | CREATE INDEX core_instance_3700153c ON core_instance USING btree (creator_id); |
| 8208 | |
| 8209 | |
| 8210 | -- |
| 8211 | -- Name: core_instance_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8212 | -- |
| 8213 | |
| 8214 | CREATE INDEX core_instance_5921cd4f ON core_instance USING btree (deployment_id); |
| 8215 | |
| 8216 | |
| 8217 | -- |
| 8218 | -- Name: core_instance_6be37982; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8219 | -- |
| 8220 | |
| 8221 | CREATE INDEX core_instance_6be37982 ON core_instance USING btree (parent_id); |
| 8222 | |
| 8223 | |
| 8224 | -- |
| 8225 | -- Name: core_instance_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8226 | -- |
| 8227 | |
| 8228 | CREATE INDEX core_instance_be7f3a0f ON core_instance USING btree (slice_id); |
| 8229 | |
| 8230 | |
| 8231 | -- |
| 8232 | -- Name: core_instance_c693ebc8; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8233 | -- |
| 8234 | |
| 8235 | CREATE INDEX core_instance_c693ebc8 ON core_instance USING btree (node_id); |
| 8236 | |
| 8237 | |
| 8238 | -- |
| 8239 | -- Name: core_instance_dd3f198d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8240 | -- |
| 8241 | |
| 8242 | CREATE INDEX core_instance_dd3f198d ON core_instance USING btree (flavor_id); |
| 8243 | |
| 8244 | |
| 8245 | -- |
| 8246 | -- Name: core_instance_f33175e6; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8247 | -- |
| 8248 | |
| 8249 | CREATE INDEX core_instance_f33175e6 ON core_instance USING btree (image_id); |
| 8250 | |
| 8251 | |
| 8252 | -- |
| 8253 | -- Name: core_invoice_8a089c2a; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8254 | -- |
| 8255 | |
| 8256 | CREATE INDEX core_invoice_8a089c2a ON core_invoice USING btree (account_id); |
| 8257 | |
| 8258 | |
| 8259 | -- |
| 8260 | -- Name: core_network_5e7b1936; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8261 | -- |
| 8262 | |
| 8263 | CREATE INDEX core_network_5e7b1936 ON core_network USING btree (owner_id); |
| 8264 | |
| 8265 | |
| 8266 | -- |
| 8267 | -- Name: core_network_74f53564; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8268 | -- |
| 8269 | |
| 8270 | CREATE INDEX core_network_74f53564 ON core_network USING btree (template_id); |
| 8271 | |
| 8272 | |
| 8273 | -- |
| 8274 | -- Name: core_network_permitted_slices_4e19114d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8275 | -- |
| 8276 | |
| 8277 | CREATE INDEX core_network_permitted_slices_4e19114d ON core_network_permitted_slices USING btree (network_id); |
| 8278 | |
| 8279 | |
| 8280 | -- |
| 8281 | -- Name: core_network_permitted_slices_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8282 | -- |
| 8283 | |
| 8284 | CREATE INDEX core_network_permitted_slices_be7f3a0f ON core_network_permitted_slices USING btree (slice_id); |
| 8285 | |
| 8286 | |
| 8287 | -- |
| 8288 | -- Name: core_networkparameter_417f1b1c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8289 | -- |
| 8290 | |
| 8291 | CREATE INDEX core_networkparameter_417f1b1c ON core_networkparameter USING btree (content_type_id); |
| 8292 | |
| 8293 | |
| 8294 | -- |
| 8295 | -- Name: core_networkparameter_80740216; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8296 | -- |
| 8297 | |
| 8298 | CREATE INDEX core_networkparameter_80740216 ON core_networkparameter USING btree (parameter_id); |
| 8299 | |
| 8300 | |
| 8301 | -- |
| 8302 | -- Name: core_networkparametertype_b068931c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8303 | -- |
| 8304 | |
| 8305 | CREATE INDEX core_networkparametertype_b068931c ON core_networkparametertype USING btree (name); |
| 8306 | |
| 8307 | |
| 8308 | -- |
| 8309 | -- Name: core_networkslice_4e19114d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8310 | -- |
| 8311 | |
| 8312 | CREATE INDEX core_networkslice_4e19114d ON core_networkslice USING btree (network_id); |
| 8313 | |
| 8314 | |
| 8315 | -- |
| 8316 | -- Name: core_networkslice_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8317 | -- |
| 8318 | |
| 8319 | CREATE INDEX core_networkslice_be7f3a0f ON core_networkslice USING btree (slice_id); |
| 8320 | |
| 8321 | |
| 8322 | -- |
| 8323 | -- Name: core_node_86aed61a; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8324 | -- |
| 8325 | |
| 8326 | CREATE INDEX core_node_86aed61a ON core_node USING btree (site_deployment_id); |
| 8327 | |
| 8328 | |
| 8329 | -- |
| 8330 | -- Name: core_node_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8331 | -- |
| 8332 | |
| 8333 | CREATE INDEX core_node_9365d6e7 ON core_node USING btree (site_id); |
| 8334 | |
| 8335 | |
| 8336 | -- |
| 8337 | -- Name: core_nodelabel_node_c693ebc8; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8338 | -- |
| 8339 | |
| 8340 | CREATE INDEX core_nodelabel_node_c693ebc8 ON core_nodelabel_node USING btree (node_id); |
| 8341 | |
| 8342 | |
| 8343 | -- |
| 8344 | -- Name: core_nodelabel_node_dd685172; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8345 | -- |
| 8346 | |
| 8347 | CREATE INDEX core_nodelabel_node_dd685172 ON core_nodelabel_node USING btree (nodelabel_id); |
| 8348 | |
| 8349 | |
| 8350 | -- |
| 8351 | -- Name: core_payment_8a089c2a; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8352 | -- |
| 8353 | |
| 8354 | CREATE INDEX core_payment_8a089c2a ON core_payment USING btree (account_id); |
| 8355 | |
| 8356 | |
| 8357 | -- |
| 8358 | -- Name: core_port_4e19114d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8359 | -- |
| 8360 | |
| 8361 | CREATE INDEX core_port_4e19114d ON core_port USING btree (network_id); |
| 8362 | |
| 8363 | |
| 8364 | -- |
| 8365 | -- Name: core_port_51afcc4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8366 | -- |
| 8367 | |
| 8368 | CREATE INDEX core_port_51afcc4f ON core_port USING btree (instance_id); |
| 8369 | |
| 8370 | |
| 8371 | -- |
| 8372 | -- Name: core_program_5e7b1936; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8373 | -- |
| 8374 | |
| 8375 | CREATE INDEX core_program_5e7b1936 ON core_program USING btree (owner_id); |
| 8376 | |
| 8377 | |
| 8378 | -- |
| 8379 | -- Name: core_reservation_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8380 | -- |
| 8381 | |
| 8382 | CREATE INDEX core_reservation_be7f3a0f ON core_reservation USING btree (slice_id); |
| 8383 | |
| 8384 | |
| 8385 | -- |
| 8386 | -- Name: core_reservedresource_51afcc4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8387 | -- |
| 8388 | |
| 8389 | CREATE INDEX core_reservedresource_51afcc4f ON core_reservedresource USING btree (instance_id); |
| 8390 | |
| 8391 | |
| 8392 | -- |
| 8393 | -- Name: core_reservedresource_732beb09; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8394 | -- |
| 8395 | |
| 8396 | CREATE INDEX core_reservedresource_732beb09 ON core_reservedresource USING btree ("reservationSet_id"); |
| 8397 | |
| 8398 | |
| 8399 | -- |
| 8400 | -- Name: core_reservedresource_e2f3ef5b; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8401 | -- |
| 8402 | |
| 8403 | CREATE INDEX core_reservedresource_e2f3ef5b ON core_reservedresource USING btree (resource_id); |
| 8404 | |
| 8405 | |
| 8406 | -- |
| 8407 | -- Name: core_role_417f1b1c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8408 | -- |
| 8409 | |
| 8410 | CREATE INDEX core_role_417f1b1c ON core_role USING btree (content_type_id); |
| 8411 | |
| 8412 | |
| 8413 | -- |
| 8414 | -- Name: core_router_5e7b1936; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8415 | -- |
| 8416 | |
| 8417 | CREATE INDEX core_router_5e7b1936 ON core_router USING btree (owner_id); |
| 8418 | |
| 8419 | |
| 8420 | -- |
| 8421 | -- Name: core_router_networks_4e19114d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8422 | -- |
| 8423 | |
| 8424 | CREATE INDEX core_router_networks_4e19114d ON core_router_networks USING btree (network_id); |
| 8425 | |
| 8426 | |
| 8427 | -- |
| 8428 | -- Name: core_router_networks_52d4f3af; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8429 | -- |
| 8430 | |
| 8431 | CREATE INDEX core_router_networks_52d4f3af ON core_router_networks USING btree (router_id); |
| 8432 | |
| 8433 | |
| 8434 | -- |
| 8435 | -- Name: core_router_permittednetworks_4e19114d; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8436 | -- |
| 8437 | |
| 8438 | CREATE INDEX core_router_permittednetworks_4e19114d ON "core_router_permittedNetworks" USING btree (network_id); |
| 8439 | |
| 8440 | |
| 8441 | -- |
| 8442 | -- Name: core_router_permittednetworks_52d4f3af; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8443 | -- |
| 8444 | |
| 8445 | CREATE INDEX core_router_permittednetworks_52d4f3af ON "core_router_permittedNetworks" USING btree (router_id); |
| 8446 | |
| 8447 | |
| 8448 | -- |
| 8449 | -- Name: core_serviceattribute_b0dc1e29; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8450 | -- |
| 8451 | |
| 8452 | CREATE INDEX core_serviceattribute_b0dc1e29 ON core_serviceattribute USING btree (service_id); |
| 8453 | |
| 8454 | |
| 8455 | -- |
| 8456 | -- Name: core_serviceclass_upgradefrom_a90aba97; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8457 | -- |
| 8458 | |
| 8459 | CREATE INDEX core_serviceclass_upgradefrom_a90aba97 ON "core_serviceclass_upgradeFrom" USING btree (to_serviceclass_id); |
| 8460 | |
| 8461 | |
| 8462 | -- |
| 8463 | -- Name: core_serviceclass_upgradefrom_e970e0f1; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8464 | -- |
| 8465 | |
| 8466 | CREATE INDEX core_serviceclass_upgradefrom_e970e0f1 ON "core_serviceclass_upgradeFrom" USING btree (from_serviceclass_id); |
| 8467 | |
| 8468 | |
| 8469 | -- |
| 8470 | -- Name: core_serviceprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8471 | -- |
| 8472 | |
| 8473 | CREATE INDEX core_serviceprivilege_84566833 ON core_serviceprivilege USING btree (role_id); |
| 8474 | |
| 8475 | |
| 8476 | -- |
| 8477 | -- Name: core_serviceprivilege_b0dc1e29; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8478 | -- |
| 8479 | |
| 8480 | CREATE INDEX core_serviceprivilege_b0dc1e29 ON core_serviceprivilege USING btree (service_id); |
| 8481 | |
| 8482 | |
| 8483 | -- |
| 8484 | -- Name: core_serviceprivilege_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8485 | -- |
| 8486 | |
| 8487 | CREATE INDEX core_serviceprivilege_e8701ad4 ON core_serviceprivilege USING btree (user_id); |
| 8488 | |
| 8489 | |
| 8490 | -- |
| 8491 | -- Name: core_serviceresource_aa578034; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8492 | -- |
| 8493 | |
| 8494 | CREATE INDEX core_serviceresource_aa578034 ON core_serviceresource USING btree ("serviceClass_id"); |
| 8495 | |
| 8496 | |
| 8497 | -- |
| 8498 | -- Name: core_sitecredential_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8499 | -- |
| 8500 | |
| 8501 | CREATE INDEX core_sitecredential_9365d6e7 ON core_sitecredential USING btree (site_id); |
| 8502 | |
| 8503 | |
| 8504 | -- |
| 8505 | -- Name: core_sitecredential_b068931c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8506 | -- |
| 8507 | |
| 8508 | CREATE INDEX core_sitecredential_b068931c ON core_sitecredential USING btree (name); |
| 8509 | |
| 8510 | |
| 8511 | -- |
| 8512 | -- Name: core_sitedeployment_5921cd4f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8513 | -- |
| 8514 | |
| 8515 | CREATE INDEX core_sitedeployment_5921cd4f ON core_sitedeployment USING btree (deployment_id); |
| 8516 | |
| 8517 | |
| 8518 | -- |
| 8519 | -- Name: core_sitedeployment_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8520 | -- |
| 8521 | |
| 8522 | CREATE INDEX core_sitedeployment_9365d6e7 ON core_sitedeployment USING btree (site_id); |
| 8523 | |
| 8524 | |
| 8525 | -- |
| 8526 | -- Name: core_sitedeployment_a31c1112; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8527 | -- |
| 8528 | |
| 8529 | CREATE INDEX core_sitedeployment_a31c1112 ON core_sitedeployment USING btree (controller_id); |
| 8530 | |
| 8531 | |
| 8532 | -- |
| 8533 | -- Name: core_siteprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8534 | -- |
| 8535 | |
| 8536 | CREATE INDEX core_siteprivilege_84566833 ON core_siteprivilege USING btree (role_id); |
| 8537 | |
| 8538 | |
| 8539 | -- |
| 8540 | -- Name: core_siteprivilege_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8541 | -- |
| 8542 | |
| 8543 | CREATE INDEX core_siteprivilege_9365d6e7 ON core_siteprivilege USING btree (site_id); |
| 8544 | |
| 8545 | |
| 8546 | -- |
| 8547 | -- Name: core_siteprivilege_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8548 | -- |
| 8549 | |
| 8550 | CREATE INDEX core_siteprivilege_e8701ad4 ON core_siteprivilege USING btree (user_id); |
| 8551 | |
| 8552 | |
| 8553 | -- |
| 8554 | -- Name: core_slice_3700153c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8555 | -- |
| 8556 | |
| 8557 | CREATE INDEX core_slice_3700153c ON core_slice USING btree (creator_id); |
| 8558 | |
| 8559 | |
| 8560 | -- |
| 8561 | -- Name: core_slice_531a000f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8562 | -- |
| 8563 | |
| 8564 | CREATE INDEX core_slice_531a000f ON core_slice USING btree (default_flavor_id); |
| 8565 | |
| 8566 | |
| 8567 | -- |
| 8568 | -- Name: core_slice_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8569 | -- |
| 8570 | |
| 8571 | CREATE INDEX core_slice_9365d6e7 ON core_slice USING btree (site_id); |
| 8572 | |
| 8573 | |
| 8574 | -- |
| 8575 | -- Name: core_slice_a82f732f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8576 | -- |
| 8577 | |
| 8578 | CREATE INDEX core_slice_a82f732f ON core_slice USING btree (default_image_id); |
| 8579 | |
| 8580 | |
| 8581 | -- |
| 8582 | -- Name: core_slice_aa578034; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8583 | -- |
| 8584 | |
| 8585 | CREATE INDEX core_slice_aa578034 ON core_slice USING btree ("serviceClass_id"); |
| 8586 | |
| 8587 | |
| 8588 | -- |
| 8589 | -- Name: core_slice_b0dc1e29; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8590 | -- |
| 8591 | |
| 8592 | CREATE INDEX core_slice_b0dc1e29 ON core_slice USING btree (service_id); |
| 8593 | |
| 8594 | |
| 8595 | -- |
| 8596 | -- Name: core_slicecredential_b068931c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8597 | -- |
| 8598 | |
| 8599 | CREATE INDEX core_slicecredential_b068931c ON core_slicecredential USING btree (name); |
| 8600 | |
| 8601 | |
| 8602 | -- |
| 8603 | -- Name: core_slicecredential_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8604 | -- |
| 8605 | |
| 8606 | CREATE INDEX core_slicecredential_be7f3a0f ON core_slicecredential USING btree (slice_id); |
| 8607 | |
| 8608 | |
| 8609 | -- |
| 8610 | -- Name: core_sliceprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8611 | -- |
| 8612 | |
| 8613 | CREATE INDEX core_sliceprivilege_84566833 ON core_sliceprivilege USING btree (role_id); |
| 8614 | |
| 8615 | |
| 8616 | -- |
| 8617 | -- Name: core_sliceprivilege_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8618 | -- |
| 8619 | |
| 8620 | CREATE INDEX core_sliceprivilege_be7f3a0f ON core_sliceprivilege USING btree (slice_id); |
| 8621 | |
| 8622 | |
| 8623 | -- |
| 8624 | -- Name: core_sliceprivilege_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8625 | -- |
| 8626 | |
| 8627 | CREATE INDEX core_sliceprivilege_e8701ad4 ON core_sliceprivilege USING btree (user_id); |
| 8628 | |
| 8629 | |
| 8630 | -- |
| 8631 | -- Name: core_slicetag_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8632 | -- |
| 8633 | |
| 8634 | CREATE INDEX core_slicetag_be7f3a0f ON core_slicetag USING btree (slice_id); |
| 8635 | |
| 8636 | |
| 8637 | -- |
| 8638 | -- Name: core_tag_417f1b1c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8639 | -- |
| 8640 | |
| 8641 | CREATE INDEX core_tag_417f1b1c ON core_tag USING btree (content_type_id); |
| 8642 | |
| 8643 | |
| 8644 | -- |
| 8645 | -- Name: core_tag_b068931c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8646 | -- |
| 8647 | |
| 8648 | CREATE INDEX core_tag_b068931c ON core_tag USING btree (name); |
| 8649 | |
| 8650 | |
| 8651 | -- |
| 8652 | -- Name: core_tag_b0dc1e29; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8653 | -- |
| 8654 | |
| 8655 | CREATE INDEX core_tag_b0dc1e29 ON core_tag USING btree (service_id); |
| 8656 | |
| 8657 | |
| 8658 | -- |
| 8659 | -- Name: core_tenant_6d0512e4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8660 | -- |
| 8661 | |
| 8662 | CREATE INDEX core_tenant_6d0512e4 ON core_tenant USING btree (subscriber_tenant_id); |
| 8663 | |
| 8664 | |
| 8665 | -- |
| 8666 | -- Name: core_tenant_a5c60fe7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8667 | -- |
| 8668 | |
| 8669 | CREATE INDEX core_tenant_a5c60fe7 ON core_tenant USING btree (subscriber_service_id); |
| 8670 | |
| 8671 | |
| 8672 | -- |
| 8673 | -- Name: core_tenant_d1fbfb28; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8674 | -- |
| 8675 | |
| 8676 | CREATE INDEX core_tenant_d1fbfb28 ON core_tenant USING btree (provider_service_id); |
| 8677 | |
| 8678 | |
| 8679 | -- |
| 8680 | -- Name: core_tenant_ec8cbfdc; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8681 | -- |
| 8682 | |
| 8683 | CREATE INDEX core_tenant_ec8cbfdc ON core_tenant USING btree (subscriber_user_id); |
| 8684 | |
| 8685 | |
| 8686 | -- |
| 8687 | -- Name: core_tenant_f687e49c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8688 | -- |
| 8689 | |
| 8690 | CREATE INDEX core_tenant_f687e49c ON core_tenant USING btree (subscriber_root_id); |
| 8691 | |
| 8692 | |
| 8693 | -- |
| 8694 | -- Name: core_tenantattribute_38543614; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8695 | -- |
| 8696 | |
| 8697 | CREATE INDEX core_tenantattribute_38543614 ON core_tenantattribute USING btree (tenant_id); |
| 8698 | |
| 8699 | |
| 8700 | -- |
| 8701 | -- Name: core_tenantrootprivilege_84566833; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8702 | -- |
| 8703 | |
| 8704 | CREATE INDEX core_tenantrootprivilege_84566833 ON core_tenantrootprivilege USING btree (role_id); |
| 8705 | |
| 8706 | |
| 8707 | -- |
| 8708 | -- Name: core_tenantrootprivilege_ad876f96; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8709 | -- |
| 8710 | |
| 8711 | CREATE INDEX core_tenantrootprivilege_ad876f96 ON core_tenantrootprivilege USING btree (tenant_root_id); |
| 8712 | |
| 8713 | |
| 8714 | -- |
| 8715 | -- Name: core_tenantrootprivilege_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8716 | -- |
| 8717 | |
| 8718 | CREATE INDEX core_tenantrootprivilege_e8701ad4 ON core_tenantrootprivilege USING btree (user_id); |
| 8719 | |
| 8720 | |
| 8721 | -- |
| 8722 | -- Name: core_user_9365d6e7; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8723 | -- |
| 8724 | |
| 8725 | CREATE INDEX core_user_9365d6e7 ON core_user USING btree (site_id); |
| 8726 | |
| 8727 | |
| 8728 | -- |
| 8729 | -- Name: core_usercredential_b068931c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8730 | -- |
| 8731 | |
| 8732 | CREATE INDEX core_usercredential_b068931c ON core_usercredential USING btree (name); |
| 8733 | |
| 8734 | |
| 8735 | -- |
| 8736 | -- Name: core_usercredential_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8737 | -- |
| 8738 | |
| 8739 | CREATE INDEX core_usercredential_e8701ad4 ON core_usercredential USING btree (user_id); |
| 8740 | |
| 8741 | |
| 8742 | -- |
| 8743 | -- Name: core_userdashboardview_5da0369f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8744 | -- |
| 8745 | |
| 8746 | CREATE INDEX core_userdashboardview_5da0369f ON core_userdashboardview USING btree ("dashboardView_id"); |
| 8747 | |
| 8748 | |
| 8749 | -- |
| 8750 | -- Name: core_userdashboardview_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8751 | -- |
| 8752 | |
| 8753 | CREATE INDEX core_userdashboardview_e8701ad4 ON core_userdashboardview USING btree (user_id); |
| 8754 | |
| 8755 | |
| 8756 | -- |
| 8757 | -- Name: django_admin_log_417f1b1c; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8758 | -- |
| 8759 | |
| 8760 | CREATE INDEX django_admin_log_417f1b1c ON django_admin_log USING btree (content_type_id); |
| 8761 | |
| 8762 | |
| 8763 | -- |
| 8764 | -- Name: django_admin_log_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8765 | -- |
| 8766 | |
| 8767 | CREATE INDEX django_admin_log_e8701ad4 ON django_admin_log USING btree (user_id); |
| 8768 | |
| 8769 | |
| 8770 | -- |
| 8771 | -- Name: django_session_de54fa62; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8772 | -- |
| 8773 | |
| 8774 | CREATE INDEX django_session_de54fa62 ON django_session USING btree (expire_date); |
| 8775 | |
| 8776 | |
| 8777 | -- |
| 8778 | -- Name: hpc_accessmap_bc4912a0; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8779 | -- |
| 8780 | |
| 8781 | CREATE INDEX hpc_accessmap_bc4912a0 ON hpc_accessmap USING btree ("contentProvider_id"); |
| 8782 | |
| 8783 | |
| 8784 | -- |
| 8785 | -- Name: hpc_cdnprefix_8473b38b; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8786 | -- |
| 8787 | |
| 8788 | CREATE INDEX hpc_cdnprefix_8473b38b ON hpc_cdnprefix USING btree ("defaultOriginServer_id"); |
| 8789 | |
| 8790 | |
| 8791 | -- |
| 8792 | -- Name: hpc_cdnprefix_bc4912a0; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8793 | -- |
| 8794 | |
| 8795 | CREATE INDEX hpc_cdnprefix_bc4912a0 ON hpc_cdnprefix USING btree ("contentProvider_id"); |
| 8796 | |
| 8797 | |
| 8798 | -- |
| 8799 | -- Name: hpc_contentprovider_ebdbc659; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8800 | -- |
| 8801 | |
| 8802 | CREATE INDEX hpc_contentprovider_ebdbc659 ON hpc_contentprovider USING btree ("serviceProvider_id"); |
| 8803 | |
| 8804 | |
| 8805 | -- |
| 8806 | -- Name: hpc_contentprovider_users_82c06917; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8807 | -- |
| 8808 | |
| 8809 | CREATE INDEX hpc_contentprovider_users_82c06917 ON hpc_contentprovider_users USING btree (contentprovider_id); |
| 8810 | |
| 8811 | |
| 8812 | -- |
| 8813 | -- Name: hpc_contentprovider_users_e8701ad4; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8814 | -- |
| 8815 | |
| 8816 | CREATE INDEX hpc_contentprovider_users_e8701ad4 ON hpc_contentprovider_users USING btree (user_id); |
| 8817 | |
| 8818 | |
| 8819 | -- |
| 8820 | -- Name: hpc_hpchealthcheck_591847bf; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8821 | -- |
| 8822 | |
| 8823 | CREATE INDEX hpc_hpchealthcheck_591847bf ON hpc_hpchealthcheck USING btree ("hpcService_id"); |
| 8824 | |
| 8825 | |
| 8826 | -- |
| 8827 | -- Name: hpc_originserver_bc4912a0; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8828 | -- |
| 8829 | |
| 8830 | CREATE INDEX hpc_originserver_bc4912a0 ON hpc_originserver USING btree ("contentProvider_id"); |
| 8831 | |
| 8832 | |
| 8833 | -- |
| 8834 | -- Name: hpc_serviceprovider_591847bf; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8835 | -- |
| 8836 | |
| 8837 | CREATE INDEX hpc_serviceprovider_591847bf ON hpc_serviceprovider USING btree ("hpcService_id"); |
| 8838 | |
| 8839 | |
| 8840 | -- |
| 8841 | -- Name: hpc_sitemap_23b3ec8f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8842 | -- |
| 8843 | |
| 8844 | CREATE INDEX hpc_sitemap_23b3ec8f ON hpc_sitemap USING btree ("cdnPrefix_id"); |
| 8845 | |
| 8846 | |
| 8847 | -- |
| 8848 | -- Name: hpc_sitemap_591847bf; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8849 | -- |
| 8850 | |
| 8851 | CREATE INDEX hpc_sitemap_591847bf ON hpc_sitemap USING btree ("hpcService_id"); |
| 8852 | |
| 8853 | |
| 8854 | -- |
| 8855 | -- Name: hpc_sitemap_bc4912a0; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8856 | -- |
| 8857 | |
| 8858 | CREATE INDEX hpc_sitemap_bc4912a0 ON hpc_sitemap USING btree ("contentProvider_id"); |
| 8859 | |
| 8860 | |
| 8861 | -- |
| 8862 | -- Name: hpc_sitemap_ebdbc659; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8863 | -- |
| 8864 | |
| 8865 | CREATE INDEX hpc_sitemap_ebdbc659 ON hpc_sitemap USING btree ("serviceProvider_id"); |
| 8866 | |
| 8867 | |
| 8868 | -- |
| 8869 | -- Name: requestrouter_servicemap_5e7b1936; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8870 | -- |
| 8871 | |
| 8872 | CREATE INDEX requestrouter_servicemap_5e7b1936 ON requestrouter_servicemap USING btree (owner_id); |
| 8873 | |
| 8874 | |
| 8875 | -- |
| 8876 | -- Name: requestrouter_servicemap_be7f3a0f; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8877 | -- |
| 8878 | |
| 8879 | CREATE INDEX requestrouter_servicemap_be7f3a0f ON requestrouter_servicemap USING btree (slice_id); |
| 8880 | |
| 8881 | |
| 8882 | -- |
| 8883 | -- Name: syndicate_storage_slicesecret_b717f5ab; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8884 | -- |
| 8885 | |
| 8886 | CREATE INDEX syndicate_storage_slicesecret_b717f5ab ON syndicate_storage_slicesecret USING btree (slice_id_id); |
| 8887 | |
| 8888 | |
| 8889 | -- |
| 8890 | -- Name: syndicate_storage_volume_279564bf; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8891 | -- |
| 8892 | |
| 8893 | CREATE INDEX syndicate_storage_volume_279564bf ON syndicate_storage_volume USING btree (owner_id_id); |
| 8894 | |
| 8895 | |
| 8896 | -- |
| 8897 | -- Name: syndicate_storage_volumeaccessright_279564bf; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8898 | -- |
| 8899 | |
| 8900 | CREATE INDEX syndicate_storage_volumeaccessright_279564bf ON syndicate_storage_volumeaccessright USING btree (owner_id_id); |
| 8901 | |
| 8902 | |
| 8903 | -- |
| 8904 | -- Name: syndicate_storage_volumeaccessright_654102bb; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8905 | -- |
| 8906 | |
| 8907 | CREATE INDEX syndicate_storage_volumeaccessright_654102bb ON syndicate_storage_volumeaccessright USING btree (volume_id); |
| 8908 | |
| 8909 | |
| 8910 | -- |
| 8911 | -- Name: syndicate_storage_volumeslice_5b591651; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8912 | -- |
| 8913 | |
| 8914 | CREATE INDEX syndicate_storage_volumeslice_5b591651 ON syndicate_storage_volumeslice USING btree (volume_id_id); |
| 8915 | |
| 8916 | |
| 8917 | -- |
| 8918 | -- Name: syndicate_storage_volumeslice_b717f5ab; Type: INDEX; Schema: public; Owner: postgres; Tablespace: |
| 8919 | -- |
| 8920 | |
| 8921 | CREATE INDEX syndicate_storage_volumeslice_b717f5ab ON syndicate_storage_volumeslice USING btree (slice_id_id); |
| 8922 | |
| 8923 | |
| 8924 | -- |
| 8925 | -- Name: auth_content_type_id_508cf46651277a81_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8926 | -- |
| 8927 | |
| 8928 | ALTER TABLE ONLY auth_permission |
| 8929 | ADD CONSTRAINT auth_content_type_id_508cf46651277a81_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED; |
| 8930 | |
| 8931 | |
| 8932 | -- |
| 8933 | -- Name: auth_group_permissio_group_id_689710a9a73b7457_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8934 | -- |
| 8935 | |
| 8936 | ALTER TABLE ONLY auth_group_permissions |
| 8937 | ADD CONSTRAINT auth_group_permissio_group_id_689710a9a73b7457_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES auth_group(id) DEFERRABLE INITIALLY DEFERRED; |
| 8938 | |
| 8939 | |
| 8940 | -- |
| 8941 | -- Name: auth_group_permission_id_1f49ccbbdc69d2fc_fk_auth_permission_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8942 | -- |
| 8943 | |
| 8944 | ALTER TABLE ONLY auth_group_permissions |
| 8945 | ADD CONSTRAINT auth_group_permission_id_1f49ccbbdc69d2fc_fk_auth_permission_id FOREIGN KEY (permission_id) REFERENCES auth_permission(id) DEFERRABLE INITIALLY DEFERRED; |
| 8946 | |
| 8947 | |
| 8948 | -- |
| 8949 | -- Name: b8a90faf34a5dd47a7f1e2f88e99f8a2; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8950 | -- |
| 8951 | |
| 8952 | ALTER TABLE ONLY hpc_hpchealthcheck |
| 8953 | ADD CONSTRAINT b8a90faf34a5dd47a7f1e2f88e99f8a2 FOREIGN KEY ("hpcService_id") REFERENCES hpc_hpcservice(service_ptr_id) DEFERRABLE INITIALLY DEFERRED; |
| 8954 | |
| 8955 | |
| 8956 | -- |
| 8957 | -- Name: c_from_serviceclass_id_188a83eaefe26390_fk_core_serviceclass_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8958 | -- |
| 8959 | |
| 8960 | ALTER TABLE ONLY "core_serviceclass_upgradeFrom" |
| 8961 | ADD CONSTRAINT c_from_serviceclass_id_188a83eaefe26390_fk_core_serviceclass_id FOREIGN KEY (from_serviceclass_id) REFERENCES core_serviceclass(id) DEFERRABLE INITIALLY DEFERRED; |
| 8962 | |
| 8963 | |
| 8964 | -- |
| 8965 | -- Name: c_parameter_id_2c17791ba32bd8c8_fk_core_networkparametertype_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8966 | -- |
| 8967 | |
| 8968 | ALTER TABLE ONLY core_networkparameter |
| 8969 | ADD CONSTRAINT c_parameter_id_2c17791ba32bd8c8_fk_core_networkparametertype_id FOREIGN KEY (parameter_id) REFERENCES core_networkparametertype(id) DEFERRABLE INITIALLY DEFERRED; |
| 8970 | |
| 8971 | |
| 8972 | -- |
| 8973 | -- Name: c_site_deployment_id_2dc763428bdc2781_fk_core_sitedeployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8974 | -- |
| 8975 | |
| 8976 | ALTER TABLE ONLY core_node |
| 8977 | ADD CONSTRAINT c_site_deployment_id_2dc763428bdc2781_fk_core_sitedeployment_id FOREIGN KEY (site_deployment_id) REFERENCES core_sitedeployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 8978 | |
| 8979 | |
| 8980 | -- |
| 8981 | -- Name: co_slice_privilege_id_21402f4f2399079_fk_core_sliceprivilege_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8982 | -- |
| 8983 | |
| 8984 | ALTER TABLE ONLY core_controllersliceprivilege |
| 8985 | ADD CONSTRAINT co_slice_privilege_id_21402f4f2399079_fk_core_sliceprivilege_id FOREIGN KEY (slice_privilege_id) REFERENCES core_sliceprivilege(id) DEFERRABLE INITIALLY DEFERRED; |
| 8986 | |
| 8987 | |
| 8988 | -- |
| 8989 | -- Name: cor_site_privilege_id_41490e8c05c2e685_fk_core_siteprivilege_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8990 | -- |
| 8991 | |
| 8992 | ALTER TABLE ONLY core_controllersiteprivilege |
| 8993 | ADD CONSTRAINT cor_site_privilege_id_41490e8c05c2e685_fk_core_siteprivilege_id FOREIGN KEY (site_privilege_id) REFERENCES core_siteprivilege(id) DEFERRABLE INITIALLY DEFERRED; |
| 8994 | |
| 8995 | |
| 8996 | -- |
| 8997 | -- Name: cor_to_serviceclass_id_4e2748248647c43b_fk_core_serviceclass_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 8998 | -- |
| 8999 | |
| 9000 | ALTER TABLE ONLY "core_serviceclass_upgradeFrom" |
| 9001 | ADD CONSTRAINT cor_to_serviceclass_id_4e2748248647c43b_fk_core_serviceclass_id FOREIGN KEY (to_serviceclass_id) REFERENCES core_serviceclass(id) DEFERRABLE INITIALLY DEFERRED; |
| 9002 | |
| 9003 | |
| 9004 | -- |
| 9005 | -- Name: core__reservationset_id_395058233c59a671_fk_core_reservation_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9006 | -- |
| 9007 | |
| 9008 | ALTER TABLE ONLY core_reservedresource |
| 9009 | ADD CONSTRAINT core__reservationset_id_395058233c59a671_fk_core_reservation_id FOREIGN KEY ("reservationSet_id") REFERENCES core_reservation(id) DEFERRABLE INITIALLY DEFERRED; |
| 9010 | |
| 9011 | |
| 9012 | -- |
| 9013 | -- Name: core__subscriber_root_id_26f21610cb2711f9_fk_core_tenantroot_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9014 | -- |
| 9015 | |
| 9016 | ALTER TABLE ONLY core_tenant |
| 9017 | ADD CONSTRAINT core__subscriber_root_id_26f21610cb2711f9_fk_core_tenantroot_id FOREIGN KEY (subscriber_root_id) REFERENCES core_tenantroot(id) DEFERRABLE INITIALLY DEFERRED; |
| 9018 | |
| 9019 | |
| 9020 | -- |
| 9021 | -- Name: core__subscriber_service_id_5049d522dc2feae7_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9022 | -- |
| 9023 | |
| 9024 | ALTER TABLE ONLY core_tenant |
| 9025 | ADD CONSTRAINT core__subscriber_service_id_5049d522dc2feae7_fk_core_service_id FOREIGN KEY (subscriber_service_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9026 | |
| 9027 | |
| 9028 | -- |
| 9029 | -- Name: core_account_site_id_7d8af010f408acb2_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9030 | -- |
| 9031 | |
| 9032 | ALTER TABLE ONLY core_account |
| 9033 | ADD CONSTRAINT core_account_site_id_7d8af010f408acb2_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9034 | |
| 9035 | |
| 9036 | -- |
| 9037 | -- Name: core_charge_account_id_277c66c32427fb_fk_core_account_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9038 | -- |
| 9039 | |
| 9040 | ALTER TABLE ONLY core_charge |
| 9041 | ADD CONSTRAINT core_charge_account_id_277c66c32427fb_fk_core_account_id FOREIGN KEY (account_id) REFERENCES core_account(id) DEFERRABLE INITIALLY DEFERRED; |
| 9042 | |
| 9043 | |
| 9044 | -- |
| 9045 | -- Name: core_charge_invoice_id_7af39adf58aad977_fk_core_invoice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9046 | -- |
| 9047 | |
| 9048 | ALTER TABLE ONLY core_charge |
| 9049 | ADD CONSTRAINT core_charge_invoice_id_7af39adf58aad977_fk_core_invoice_id FOREIGN KEY (invoice_id) REFERENCES core_invoice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9050 | |
| 9051 | |
| 9052 | -- |
| 9053 | -- Name: core_charge_object_id_349f8834f1bf5ce6_fk_core_usableobject_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9054 | -- |
| 9055 | |
| 9056 | ALTER TABLE ONLY core_charge |
| 9057 | ADD CONSTRAINT core_charge_object_id_349f8834f1bf5ce6_fk_core_usableobject_id FOREIGN KEY (object_id) REFERENCES core_usableobject(id) DEFERRABLE INITIALLY DEFERRED; |
| 9058 | |
| 9059 | |
| 9060 | -- |
| 9061 | -- Name: core_charge_slice_id_5f33de3b320604f2_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9062 | -- |
| 9063 | |
| 9064 | ALTER TABLE ONLY core_charge |
| 9065 | ADD CONSTRAINT core_charge_slice_id_5f33de3b320604f2_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9066 | |
| 9067 | |
| 9068 | -- |
| 9069 | -- Name: core_content_type_id_150a10ada282bcf9_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9070 | -- |
| 9071 | |
| 9072 | ALTER TABLE ONLY core_role |
| 9073 | ADD CONSTRAINT core_content_type_id_150a10ada282bcf9_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED; |
| 9074 | |
| 9075 | |
| 9076 | -- |
| 9077 | -- Name: core_content_type_id_3cc30601489a3056_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9078 | -- |
| 9079 | |
| 9080 | ALTER TABLE ONLY core_networkparameter |
| 9081 | ADD CONSTRAINT core_content_type_id_3cc30601489a3056_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED; |
| 9082 | |
| 9083 | |
| 9084 | -- |
| 9085 | -- Name: core_content_type_id_413c7b5400f8ad9c_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9086 | -- |
| 9087 | |
| 9088 | ALTER TABLE ONLY core_tag |
| 9089 | ADD CONSTRAINT core_content_type_id_413c7b5400f8ad9c_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED; |
| 9090 | |
| 9091 | |
| 9092 | -- |
| 9093 | -- Name: core_contr_controller_id_11d29f7e2a4a5462_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9094 | -- |
| 9095 | |
| 9096 | ALTER TABLE ONLY core_controllersiteprivilege |
| 9097 | ADD CONSTRAINT core_contr_controller_id_11d29f7e2a4a5462_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9098 | |
| 9099 | |
| 9100 | -- |
| 9101 | -- Name: core_contr_controller_id_1f82c3216437715f_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9102 | -- |
| 9103 | |
| 9104 | ALTER TABLE ONLY core_controllerdashboardview |
| 9105 | ADD CONSTRAINT core_contr_controller_id_1f82c3216437715f_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9106 | |
| 9107 | |
| 9108 | -- |
| 9109 | -- Name: core_contr_controller_id_46178c1d21384e5e_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9110 | -- |
| 9111 | |
| 9112 | ALTER TABLE ONLY core_controllersite |
| 9113 | ADD CONSTRAINT core_contr_controller_id_46178c1d21384e5e_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9114 | |
| 9115 | |
| 9116 | -- |
| 9117 | -- Name: core_contr_controller_id_4fb982de67c3b742_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9118 | -- |
| 9119 | |
| 9120 | ALTER TABLE ONLY core_controllersliceprivilege |
| 9121 | ADD CONSTRAINT core_contr_controller_id_4fb982de67c3b742_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9122 | |
| 9123 | |
| 9124 | -- |
| 9125 | -- Name: core_contr_controller_id_5cd05d37bbdf1d96_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9126 | -- |
| 9127 | |
| 9128 | ALTER TABLE ONLY core_controlleruser |
| 9129 | ADD CONSTRAINT core_contr_controller_id_5cd05d37bbdf1d96_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9130 | |
| 9131 | |
| 9132 | -- |
| 9133 | -- Name: core_contr_controller_id_60b467e792b15198_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9134 | -- |
| 9135 | |
| 9136 | ALTER TABLE ONLY core_controllernetwork |
| 9137 | ADD CONSTRAINT core_contr_controller_id_60b467e792b15198_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9138 | |
| 9139 | |
| 9140 | -- |
| 9141 | -- Name: core_contr_controller_id_7095bdbd27f73f56_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9142 | -- |
| 9143 | |
| 9144 | ALTER TABLE ONLY core_controllerslice |
| 9145 | ADD CONSTRAINT core_contr_controller_id_7095bdbd27f73f56_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9146 | |
| 9147 | |
| 9148 | -- |
| 9149 | -- Name: core_contr_deployment_id_772a055c58b6e43a_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9150 | -- |
| 9151 | |
| 9152 | ALTER TABLE ONLY core_controller |
| 9153 | ADD CONSTRAINT core_contr_deployment_id_772a055c58b6e43a_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9154 | |
| 9155 | |
| 9156 | -- |
| 9157 | -- Name: core_contro_controller_id_5906172a2f34d3a_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9158 | -- |
| 9159 | |
| 9160 | ALTER TABLE ONLY core_controllercredential |
| 9161 | ADD CONSTRAINT core_contro_controller_id_5906172a2f34d3a_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9162 | |
| 9163 | |
| 9164 | -- |
| 9165 | -- Name: core_contro_controller_id_6d1311b7cc69cd7_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9166 | -- |
| 9167 | |
| 9168 | ALTER TABLE ONLY core_controllerimages |
| 9169 | ADD CONSTRAINT core_contro_controller_id_6d1311b7cc69cd7_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9170 | |
| 9171 | |
| 9172 | -- |
| 9173 | -- Name: core_controllerimage_image_id_5713221a6b077f6b_fk_core_image_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9174 | -- |
| 9175 | |
| 9176 | ALTER TABLE ONLY core_controllerimages |
| 9177 | ADD CONSTRAINT core_controllerimage_image_id_5713221a6b077f6b_fk_core_image_id FOREIGN KEY (image_id) REFERENCES core_image(id) DEFERRABLE INITIALLY DEFERRED; |
| 9178 | |
| 9179 | |
| 9180 | -- |
| 9181 | -- Name: core_controllern_network_id_3fe7748f6851d06f_fk_core_network_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9182 | -- |
| 9183 | |
| 9184 | ALTER TABLE ONLY core_controllernetwork |
| 9185 | ADD CONSTRAINT core_controllern_network_id_3fe7748f6851d06f_fk_core_network_id FOREIGN KEY (network_id) REFERENCES core_network(id) DEFERRABLE INITIALLY DEFERRED; |
| 9186 | |
| 9187 | |
| 9188 | -- |
| 9189 | -- Name: core_controllersite_site_id_4fa87f0734a60665_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9190 | -- |
| 9191 | |
| 9192 | ALTER TABLE ONLY core_controllersite |
| 9193 | ADD CONSTRAINT core_controllersite_site_id_4fa87f0734a60665_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9194 | |
| 9195 | |
| 9196 | -- |
| 9197 | -- Name: core_controllerslice_slice_id_7005d287c601356b_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9198 | -- |
| 9199 | |
| 9200 | ALTER TABLE ONLY core_controllerslice |
| 9201 | ADD CONSTRAINT core_controllerslice_slice_id_7005d287c601356b_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9202 | |
| 9203 | |
| 9204 | -- |
| 9205 | -- Name: core_controlleruser_user_id_60dc3a7220b1005b_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9206 | -- |
| 9207 | |
| 9208 | ALTER TABLE ONLY core_controlleruser |
| 9209 | ADD CONSTRAINT core_controlleruser_user_id_60dc3a7220b1005b_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9210 | |
| 9211 | |
| 9212 | -- |
| 9213 | -- Name: core_dashbo_deployment_id_8b902dfc7ab128b_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9214 | -- |
| 9215 | |
| 9216 | ALTER TABLE ONLY core_dashboardview_deployments |
| 9217 | ADD CONSTRAINT core_dashbo_deployment_id_8b902dfc7ab128b_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9218 | |
| 9219 | |
| 9220 | -- |
| 9221 | -- Name: core_dashboardview_id_1241776e11825a15_fk_core_dashboardview_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9222 | -- |
| 9223 | |
| 9224 | ALTER TABLE ONLY core_controllerdashboardview |
| 9225 | ADD CONSTRAINT core_dashboardview_id_1241776e11825a15_fk_core_dashboardview_id FOREIGN KEY ("dashboardView_id") REFERENCES core_dashboardview(id) DEFERRABLE INITIALLY DEFERRED; |
| 9226 | |
| 9227 | |
| 9228 | -- |
| 9229 | -- Name: core_dashboardview_id_623d5d799346e0f8_fk_core_dashboardview_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9230 | -- |
| 9231 | |
| 9232 | ALTER TABLE ONLY core_dashboardview_deployments |
| 9233 | ADD CONSTRAINT core_dashboardview_id_623d5d799346e0f8_fk_core_dashboardview_id FOREIGN KEY (dashboardview_id) REFERENCES core_dashboardview(id) DEFERRABLE INITIALLY DEFERRED; |
| 9234 | |
| 9235 | |
| 9236 | -- |
| 9237 | -- Name: core_dashboardview_id_7d9723f531eefdde_fk_core_dashboardview_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9238 | -- |
| 9239 | |
| 9240 | ALTER TABLE ONLY core_userdashboardview |
| 9241 | ADD CONSTRAINT core_dashboardview_id_7d9723f531eefdde_fk_core_dashboardview_id FOREIGN KEY ("dashboardView_id") REFERENCES core_dashboardview(id) DEFERRABLE INITIALLY DEFERRED; |
| 9242 | |
| 9243 | |
| 9244 | -- |
| 9245 | -- Name: core_deplo_deployment_id_4606c90fff2e5ecf_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9246 | -- |
| 9247 | |
| 9248 | ALTER TABLE ONLY core_deploymentprivilege |
| 9249 | ADD CONSTRAINT core_deplo_deployment_id_4606c90fff2e5ecf_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9250 | |
| 9251 | |
| 9252 | -- |
| 9253 | -- Name: core_deploym_role_id_221f61258b29e608_fk_core_deploymentrole_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9254 | -- |
| 9255 | |
| 9256 | ALTER TABLE ONLY core_deploymentprivilege |
| 9257 | ADD CONSTRAINT core_deploym_role_id_221f61258b29e608_fk_core_deploymentrole_id FOREIGN KEY (role_id) REFERENCES core_deploymentrole(id) DEFERRABLE INITIALLY DEFERRED; |
| 9258 | |
| 9259 | |
| 9260 | -- |
| 9261 | -- Name: core_deploymentprivile_user_id_2ac00d41376e2a8d_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9262 | -- |
| 9263 | |
| 9264 | ALTER TABLE ONLY core_deploymentprivilege |
| 9265 | ADD CONSTRAINT core_deploymentprivile_user_id_2ac00d41376e2a8d_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9266 | |
| 9267 | |
| 9268 | -- |
| 9269 | -- Name: core_flavo_deployment_id_33af1c761c0497e3_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9270 | -- |
| 9271 | |
| 9272 | ALTER TABLE ONLY core_flavor_deployments |
| 9273 | ADD CONSTRAINT core_flavo_deployment_id_33af1c761c0497e3_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9274 | |
| 9275 | |
| 9276 | -- |
| 9277 | -- Name: core_flavor_deploy_flavor_id_3e598722be0b3446_fk_core_flavor_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9278 | -- |
| 9279 | |
| 9280 | ALTER TABLE ONLY core_flavor_deployments |
| 9281 | ADD CONSTRAINT core_flavor_deploy_flavor_id_3e598722be0b3446_fk_core_flavor_id FOREIGN KEY (flavor_id) REFERENCES core_flavor(id) DEFERRABLE INITIALLY DEFERRED; |
| 9282 | |
| 9283 | |
| 9284 | -- |
| 9285 | -- Name: core_image_deployment_id_31772dfdcf4b80eb_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9286 | -- |
| 9287 | |
| 9288 | ALTER TABLE ONLY core_imagedeployments |
| 9289 | ADD CONSTRAINT core_image_deployment_id_31772dfdcf4b80eb_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9290 | |
| 9291 | |
| 9292 | -- |
| 9293 | -- Name: core_imagedeployment_image_id_4a6df22c06603b40_fk_core_image_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9294 | -- |
| 9295 | |
| 9296 | ALTER TABLE ONLY core_imagedeployments |
| 9297 | ADD CONSTRAINT core_imagedeployment_image_id_4a6df22c06603b40_fk_core_image_id FOREIGN KEY (image_id) REFERENCES core_image(id) DEFERRABLE INITIALLY DEFERRED; |
| 9298 | |
| 9299 | |
| 9300 | -- |
| 9301 | -- Name: core_insta_deployment_id_111e2cdd025ec8ef_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9302 | -- |
| 9303 | |
| 9304 | ALTER TABLE ONLY core_instance |
| 9305 | ADD CONSTRAINT core_insta_deployment_id_111e2cdd025ec8ef_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9306 | |
| 9307 | |
| 9308 | -- |
| 9309 | -- Name: core_instance_creator_id_66a7e8c819d15b29_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9310 | -- |
| 9311 | |
| 9312 | ALTER TABLE ONLY core_instance |
| 9313 | ADD CONSTRAINT core_instance_creator_id_66a7e8c819d15b29_fk_core_user_id FOREIGN KEY (creator_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9314 | |
| 9315 | |
| 9316 | -- |
| 9317 | -- Name: core_instance_flavor_id_61bc3198a5673218_fk_core_flavor_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9318 | -- |
| 9319 | |
| 9320 | ALTER TABLE ONLY core_instance |
| 9321 | ADD CONSTRAINT core_instance_flavor_id_61bc3198a5673218_fk_core_flavor_id FOREIGN KEY (flavor_id) REFERENCES core_flavor(id) DEFERRABLE INITIALLY DEFERRED; |
| 9322 | |
| 9323 | |
| 9324 | -- |
| 9325 | -- Name: core_instance_image_id_5c8c96fe9a61802c_fk_core_image_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9326 | -- |
| 9327 | |
| 9328 | ALTER TABLE ONLY core_instance |
| 9329 | ADD CONSTRAINT core_instance_image_id_5c8c96fe9a61802c_fk_core_image_id FOREIGN KEY (image_id) REFERENCES core_image(id) DEFERRABLE INITIALLY DEFERRED; |
| 9330 | |
| 9331 | |
| 9332 | -- |
| 9333 | -- Name: core_instance_node_id_ae899cb7a62df9a_fk_core_node_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9334 | -- |
| 9335 | |
| 9336 | ALTER TABLE ONLY core_instance |
| 9337 | ADD CONSTRAINT core_instance_node_id_ae899cb7a62df9a_fk_core_node_id FOREIGN KEY (node_id) REFERENCES core_node(id) DEFERRABLE INITIALLY DEFERRED; |
| 9338 | |
| 9339 | |
| 9340 | -- |
| 9341 | -- Name: core_instance_parent_id_20ac3a3c727decb4_fk_core_instance_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9342 | -- |
| 9343 | |
| 9344 | ALTER TABLE ONLY core_instance |
| 9345 | ADD CONSTRAINT core_instance_parent_id_20ac3a3c727decb4_fk_core_instance_id FOREIGN KEY (parent_id) REFERENCES core_instance(id) DEFERRABLE INITIALLY DEFERRED; |
| 9346 | |
| 9347 | |
| 9348 | -- |
| 9349 | -- Name: core_instance_slice_id_2ddcfe06a9e4c985_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9350 | -- |
| 9351 | |
| 9352 | ALTER TABLE ONLY core_instance |
| 9353 | ADD CONSTRAINT core_instance_slice_id_2ddcfe06a9e4c985_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9354 | |
| 9355 | |
| 9356 | -- |
| 9357 | -- Name: core_invoice_account_id_7802a49ab0cec433_fk_core_account_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9358 | -- |
| 9359 | |
| 9360 | ALTER TABLE ONLY core_invoice |
| 9361 | ADD CONSTRAINT core_invoice_account_id_7802a49ab0cec433_fk_core_account_id FOREIGN KEY (account_id) REFERENCES core_account(id) DEFERRABLE INITIALLY DEFERRED; |
| 9362 | |
| 9363 | |
| 9364 | -- |
| 9365 | -- Name: core_ne_template_id_7268a8d58aa4008e_fk_core_networktemplate_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9366 | -- |
| 9367 | |
| 9368 | ALTER TABLE ONLY core_network |
| 9369 | ADD CONSTRAINT core_ne_template_id_7268a8d58aa4008e_fk_core_networktemplate_id FOREIGN KEY (template_id) REFERENCES core_networktemplate(id) DEFERRABLE INITIALLY DEFERRED; |
| 9370 | |
| 9371 | |
| 9372 | -- |
| 9373 | -- Name: core_network_owner_id_1b5a720eac1f1d6c_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9374 | -- |
| 9375 | |
| 9376 | ALTER TABLE ONLY core_network |
| 9377 | ADD CONSTRAINT core_network_owner_id_1b5a720eac1f1d6c_fk_core_slice_id FOREIGN KEY (owner_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9378 | |
| 9379 | |
| 9380 | -- |
| 9381 | -- Name: core_network_perm_network_id_79f8a18a0197dd1_fk_core_network_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9382 | -- |
| 9383 | |
| 9384 | ALTER TABLE ONLY core_network_permitted_slices |
| 9385 | ADD CONSTRAINT core_network_perm_network_id_79f8a18a0197dd1_fk_core_network_id FOREIGN KEY (network_id) REFERENCES core_network(id) DEFERRABLE INITIALLY DEFERRED; |
| 9386 | |
| 9387 | |
| 9388 | -- |
| 9389 | -- Name: core_network_permitt_slice_id_7d7e6e1a0b962f45_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9390 | -- |
| 9391 | |
| 9392 | ALTER TABLE ONLY core_network_permitted_slices |
| 9393 | ADD CONSTRAINT core_network_permitt_slice_id_7d7e6e1a0b962f45_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9394 | |
| 9395 | |
| 9396 | -- |
| 9397 | -- Name: core_networkslic_network_id_2823f40a154bc2e6_fk_core_network_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9398 | -- |
| 9399 | |
| 9400 | ALTER TABLE ONLY core_networkslice |
| 9401 | ADD CONSTRAINT core_networkslic_network_id_2823f40a154bc2e6_fk_core_network_id FOREIGN KEY (network_id) REFERENCES core_network(id) DEFERRABLE INITIALLY DEFERRED; |
| 9402 | |
| 9403 | |
| 9404 | -- |
| 9405 | -- Name: core_networkslice_slice_id_801f34a8ab285a0_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9406 | -- |
| 9407 | |
| 9408 | ALTER TABLE ONLY core_networkslice |
| 9409 | ADD CONSTRAINT core_networkslice_slice_id_801f34a8ab285a0_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9410 | |
| 9411 | |
| 9412 | -- |
| 9413 | -- Name: core_node_site_id_28bac05ef1a512ce_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9414 | -- |
| 9415 | |
| 9416 | ALTER TABLE ONLY core_node |
| 9417 | ADD CONSTRAINT core_node_site_id_28bac05ef1a512ce_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9418 | |
| 9419 | |
| 9420 | -- |
| 9421 | -- Name: core_nodelab_nodelabel_id_6bbea668080a7ba5_fk_core_nodelabel_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9422 | -- |
| 9423 | |
| 9424 | ALTER TABLE ONLY core_nodelabel_node |
| 9425 | ADD CONSTRAINT core_nodelab_nodelabel_id_6bbea668080a7ba5_fk_core_nodelabel_id FOREIGN KEY (nodelabel_id) REFERENCES core_nodelabel(id) DEFERRABLE INITIALLY DEFERRED; |
| 9426 | |
| 9427 | |
| 9428 | -- |
| 9429 | -- Name: core_nodelabel_node_node_id_b98c651a6265ec0_fk_core_node_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9430 | -- |
| 9431 | |
| 9432 | ALTER TABLE ONLY core_nodelabel_node |
| 9433 | ADD CONSTRAINT core_nodelabel_node_node_id_b98c651a6265ec0_fk_core_node_id FOREIGN KEY (node_id) REFERENCES core_node(id) DEFERRABLE INITIALLY DEFERRED; |
| 9434 | |
| 9435 | |
| 9436 | -- |
| 9437 | -- Name: core_payment_account_id_3cc9ae7e7b925002_fk_core_account_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9438 | -- |
| 9439 | |
| 9440 | ALTER TABLE ONLY core_payment |
| 9441 | ADD CONSTRAINT core_payment_account_id_3cc9ae7e7b925002_fk_core_account_id FOREIGN KEY (account_id) REFERENCES core_account(id) DEFERRABLE INITIALLY DEFERRED; |
| 9442 | |
| 9443 | |
| 9444 | -- |
| 9445 | -- Name: core_port_instance_id_5bdb1ae59ca1dc73_fk_core_instance_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9446 | -- |
| 9447 | |
| 9448 | ALTER TABLE ONLY core_port |
| 9449 | ADD CONSTRAINT core_port_instance_id_5bdb1ae59ca1dc73_fk_core_instance_id FOREIGN KEY (instance_id) REFERENCES core_instance(id) DEFERRABLE INITIALLY DEFERRED; |
| 9450 | |
| 9451 | |
| 9452 | -- |
| 9453 | -- Name: core_port_network_id_655a9dc4ef32f845_fk_core_network_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9454 | -- |
| 9455 | |
| 9456 | ALTER TABLE ONLY core_port |
| 9457 | ADD CONSTRAINT core_port_network_id_655a9dc4ef32f845_fk_core_network_id FOREIGN KEY (network_id) REFERENCES core_network(id) DEFERRABLE INITIALLY DEFERRED; |
| 9458 | |
| 9459 | |
| 9460 | -- |
| 9461 | -- Name: core_program_owner_id_491cb2182952268e_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9462 | -- |
| 9463 | |
| 9464 | ALTER TABLE ONLY core_program |
| 9465 | ADD CONSTRAINT core_program_owner_id_491cb2182952268e_fk_core_user_id FOREIGN KEY (owner_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9466 | |
| 9467 | |
| 9468 | -- |
| 9469 | -- Name: core_re_resource_id_1126f44e743a899d_fk_core_serviceresource_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9470 | -- |
| 9471 | |
| 9472 | ALTER TABLE ONLY core_reservedresource |
| 9473 | ADD CONSTRAINT core_re_resource_id_1126f44e743a899d_fk_core_serviceresource_id FOREIGN KEY (resource_id) REFERENCES core_serviceresource(id) DEFERRABLE INITIALLY DEFERRED; |
| 9474 | |
| 9475 | |
| 9476 | -- |
| 9477 | -- Name: core_reservation_slice_id_4df07726653daed_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9478 | -- |
| 9479 | |
| 9480 | ALTER TABLE ONLY core_reservation |
| 9481 | ADD CONSTRAINT core_reservation_slice_id_4df07726653daed_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9482 | |
| 9483 | |
| 9484 | -- |
| 9485 | -- Name: core_reservedr_instance_id_626caea355f5195e_fk_core_instance_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9486 | -- |
| 9487 | |
| 9488 | ALTER TABLE ONLY core_reservedresource |
| 9489 | ADD CONSTRAINT core_reservedr_instance_id_626caea355f5195e_fk_core_instance_id FOREIGN KEY (instance_id) REFERENCES core_instance(id) DEFERRABLE INITIALLY DEFERRED; |
| 9490 | |
| 9491 | |
| 9492 | -- |
| 9493 | -- Name: core_router_netw_network_id_12bc59c5ca78fdc0_fk_core_network_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9494 | -- |
| 9495 | |
| 9496 | ALTER TABLE ONLY core_router_networks |
| 9497 | ADD CONSTRAINT core_router_netw_network_id_12bc59c5ca78fdc0_fk_core_network_id FOREIGN KEY (network_id) REFERENCES core_network(id) DEFERRABLE INITIALLY DEFERRED; |
| 9498 | |
| 9499 | |
| 9500 | -- |
| 9501 | -- Name: core_router_networ_router_id_3cf4f94bd7970e88_fk_core_router_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9502 | -- |
| 9503 | |
| 9504 | ALTER TABLE ONLY core_router_networks |
| 9505 | ADD CONSTRAINT core_router_networ_router_id_3cf4f94bd7970e88_fk_core_router_id FOREIGN KEY (router_id) REFERENCES core_router(id) DEFERRABLE INITIALLY DEFERRED; |
| 9506 | |
| 9507 | |
| 9508 | -- |
| 9509 | -- Name: core_router_owner_id_13c4ac38c56512c6_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9510 | -- |
| 9511 | |
| 9512 | ALTER TABLE ONLY core_router |
| 9513 | ADD CONSTRAINT core_router_owner_id_13c4ac38c56512c6_fk_core_slice_id FOREIGN KEY (owner_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9514 | |
| 9515 | |
| 9516 | -- |
| 9517 | -- Name: core_router_permi_network_id_8ee54284c93cd43_fk_core_network_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9518 | -- |
| 9519 | |
| 9520 | ALTER TABLE ONLY "core_router_permittedNetworks" |
| 9521 | ADD CONSTRAINT core_router_permi_network_id_8ee54284c93cd43_fk_core_network_id FOREIGN KEY (network_id) REFERENCES core_network(id) DEFERRABLE INITIALLY DEFERRED; |
| 9522 | |
| 9523 | |
| 9524 | -- |
| 9525 | -- Name: core_router_permit_router_id_3506769cdaf40bb5_fk_core_router_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9526 | -- |
| 9527 | |
| 9528 | ALTER TABLE ONLY "core_router_permittedNetworks" |
| 9529 | ADD CONSTRAINT core_router_permit_router_id_3506769cdaf40bb5_fk_core_router_id FOREIGN KEY (router_id) REFERENCES core_router(id) DEFERRABLE INITIALLY DEFERRED; |
| 9530 | |
| 9531 | |
| 9532 | -- |
| 9533 | -- Name: core_s_serviceclass_id_7fa5b55190a88c84_fk_core_serviceclass_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9534 | -- |
| 9535 | |
| 9536 | ALTER TABLE ONLY core_serviceresource |
| 9537 | ADD CONSTRAINT core_s_serviceclass_id_7fa5b55190a88c84_fk_core_serviceclass_id FOREIGN KEY ("serviceClass_id") REFERENCES core_serviceclass(id) DEFERRABLE INITIALLY DEFERRED; |
| 9538 | |
| 9539 | |
| 9540 | -- |
| 9541 | -- Name: core_serviceattr_service_id_5dd88bdc4a289e9e_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9542 | -- |
| 9543 | |
| 9544 | ALTER TABLE ONLY core_serviceattribute |
| 9545 | ADD CONSTRAINT core_serviceattr_service_id_5dd88bdc4a289e9e_fk_core_service_id FOREIGN KEY (service_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9546 | |
| 9547 | |
| 9548 | -- |
| 9549 | -- Name: core_servicepri_role_id_2516e31051d592b9_fk_core_servicerole_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9550 | -- |
| 9551 | |
| 9552 | ALTER TABLE ONLY core_serviceprivilege |
| 9553 | ADD CONSTRAINT core_servicepri_role_id_2516e31051d592b9_fk_core_servicerole_id FOREIGN KEY (role_id) REFERENCES core_servicerole(id) DEFERRABLE INITIALLY DEFERRED; |
| 9554 | |
| 9555 | |
| 9556 | -- |
| 9557 | -- Name: core_servicepriv_service_id_326f2584a82884fb_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9558 | -- |
| 9559 | |
| 9560 | ALTER TABLE ONLY core_serviceprivilege |
| 9561 | ADD CONSTRAINT core_servicepriv_service_id_326f2584a82884fb_fk_core_service_id FOREIGN KEY (service_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9562 | |
| 9563 | |
| 9564 | -- |
| 9565 | -- Name: core_serviceprivilege_user_id_5e78485b5063e04_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9566 | -- |
| 9567 | |
| 9568 | ALTER TABLE ONLY core_serviceprivilege |
| 9569 | ADD CONSTRAINT core_serviceprivilege_user_id_5e78485b5063e04_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9570 | |
| 9571 | |
| 9572 | -- |
| 9573 | -- Name: core_sitecredential_site_id_2ede808de256b5ca_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9574 | -- |
| 9575 | |
| 9576 | ALTER TABLE ONLY core_sitecredential |
| 9577 | ADD CONSTRAINT core_sitecredential_site_id_2ede808de256b5ca_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9578 | |
| 9579 | |
| 9580 | -- |
| 9581 | -- Name: core_sited_controller_id_30291acda546cff3_fk_core_controller_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9582 | -- |
| 9583 | |
| 9584 | ALTER TABLE ONLY core_sitedeployment |
| 9585 | ADD CONSTRAINT core_sited_controller_id_30291acda546cff3_fk_core_controller_id FOREIGN KEY (controller_id) REFERENCES core_controller(id) DEFERRABLE INITIALLY DEFERRED; |
| 9586 | |
| 9587 | |
| 9588 | -- |
| 9589 | -- Name: core_sited_deployment_id_2073c8bc2ac33aee_fk_core_deployment_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9590 | -- |
| 9591 | |
| 9592 | ALTER TABLE ONLY core_sitedeployment |
| 9593 | ADD CONSTRAINT core_sited_deployment_id_2073c8bc2ac33aee_fk_core_deployment_id FOREIGN KEY (deployment_id) REFERENCES core_deployment(id) DEFERRABLE INITIALLY DEFERRED; |
| 9594 | |
| 9595 | |
| 9596 | -- |
| 9597 | -- Name: core_sitedeployment_site_id_10d760d1d81e2090_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9598 | -- |
| 9599 | |
| 9600 | ALTER TABLE ONLY core_sitedeployment |
| 9601 | ADD CONSTRAINT core_sitedeployment_site_id_10d760d1d81e2090_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9602 | |
| 9603 | |
| 9604 | -- |
| 9605 | -- Name: core_siteprivilege_role_id_71e5069ae809cb06_fk_core_siterole_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9606 | -- |
| 9607 | |
| 9608 | ALTER TABLE ONLY core_siteprivilege |
| 9609 | ADD CONSTRAINT core_siteprivilege_role_id_71e5069ae809cb06_fk_core_siterole_id FOREIGN KEY (role_id) REFERENCES core_siterole(id) DEFERRABLE INITIALLY DEFERRED; |
| 9610 | |
| 9611 | |
| 9612 | -- |
| 9613 | -- Name: core_siteprivilege_site_id_33ec92307c1cb3bd_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9614 | -- |
| 9615 | |
| 9616 | ALTER TABLE ONLY core_siteprivilege |
| 9617 | ADD CONSTRAINT core_siteprivilege_site_id_33ec92307c1cb3bd_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9618 | |
| 9619 | |
| 9620 | -- |
| 9621 | -- Name: core_siteprivilege_user_id_4a58c40e58eea8c5_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9622 | -- |
| 9623 | |
| 9624 | ALTER TABLE ONLY core_siteprivilege |
| 9625 | ADD CONSTRAINT core_siteprivilege_user_id_4a58c40e58eea8c5_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9626 | |
| 9627 | |
| 9628 | -- |
| 9629 | -- Name: core_sl_serviceclass_id_77da7f94b58488b_fk_core_serviceclass_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9630 | -- |
| 9631 | |
| 9632 | ALTER TABLE ONLY core_slice |
| 9633 | ADD CONSTRAINT core_sl_serviceclass_id_77da7f94b58488b_fk_core_serviceclass_id FOREIGN KEY ("serviceClass_id") REFERENCES core_serviceclass(id) DEFERRABLE INITIALLY DEFERRED; |
| 9634 | |
| 9635 | |
| 9636 | -- |
| 9637 | -- Name: core_slice_creator_id_7c5fa82797e0d281_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9638 | -- |
| 9639 | |
| 9640 | ALTER TABLE ONLY core_slice |
| 9641 | ADD CONSTRAINT core_slice_creator_id_7c5fa82797e0d281_fk_core_user_id FOREIGN KEY (creator_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9642 | |
| 9643 | |
| 9644 | -- |
| 9645 | -- Name: core_slice_default_flavor_id_7e9b60d7e92ce276_fk_core_flavor_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9646 | -- |
| 9647 | |
| 9648 | ALTER TABLE ONLY core_slice |
| 9649 | ADD CONSTRAINT core_slice_default_flavor_id_7e9b60d7e92ce276_fk_core_flavor_id FOREIGN KEY (default_flavor_id) REFERENCES core_flavor(id) DEFERRABLE INITIALLY DEFERRED; |
| 9650 | |
| 9651 | |
| 9652 | -- |
| 9653 | -- Name: core_slice_default_image_id_4cc5967fffec96da_fk_core_image_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9654 | -- |
| 9655 | |
| 9656 | ALTER TABLE ONLY core_slice |
| 9657 | ADD CONSTRAINT core_slice_default_image_id_4cc5967fffec96da_fk_core_image_id FOREIGN KEY (default_image_id) REFERENCES core_image(id) DEFERRABLE INITIALLY DEFERRED; |
| 9658 | |
| 9659 | |
| 9660 | -- |
| 9661 | -- Name: core_slice_service_id_56ec7a0b3401bf7c_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9662 | -- |
| 9663 | |
| 9664 | ALTER TABLE ONLY core_slice |
| 9665 | ADD CONSTRAINT core_slice_service_id_56ec7a0b3401bf7c_fk_core_service_id FOREIGN KEY (service_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9666 | |
| 9667 | |
| 9668 | -- |
| 9669 | -- Name: core_slice_site_id_13fe089488dd45_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9670 | -- |
| 9671 | |
| 9672 | ALTER TABLE ONLY core_slice |
| 9673 | ADD CONSTRAINT core_slice_site_id_13fe089488dd45_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9674 | |
| 9675 | |
| 9676 | -- |
| 9677 | -- Name: core_slicecredential_slice_id_1c79ffce7dd61f3c_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9678 | -- |
| 9679 | |
| 9680 | ALTER TABLE ONLY core_slicecredential |
| 9681 | ADD CONSTRAINT core_slicecredential_slice_id_1c79ffce7dd61f3c_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9682 | |
| 9683 | |
| 9684 | -- |
| 9685 | -- Name: core_sliceprivile_role_id_1d55e0b0ac43107a_fk_core_slicerole_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9686 | -- |
| 9687 | |
| 9688 | ALTER TABLE ONLY core_sliceprivilege |
| 9689 | ADD CONSTRAINT core_sliceprivile_role_id_1d55e0b0ac43107a_fk_core_slicerole_id FOREIGN KEY (role_id) REFERENCES core_slicerole(id) DEFERRABLE INITIALLY DEFERRED; |
| 9690 | |
| 9691 | |
| 9692 | -- |
| 9693 | -- Name: core_sliceprivilege_slice_id_3fbaadbffeb24835_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9694 | -- |
| 9695 | |
| 9696 | ALTER TABLE ONLY core_sliceprivilege |
| 9697 | ADD CONSTRAINT core_sliceprivilege_slice_id_3fbaadbffeb24835_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9698 | |
| 9699 | |
| 9700 | -- |
| 9701 | -- Name: core_sliceprivilege_user_id_253eeb2ddef0e745_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9702 | -- |
| 9703 | |
| 9704 | ALTER TABLE ONLY core_sliceprivilege |
| 9705 | ADD CONSTRAINT core_sliceprivilege_user_id_253eeb2ddef0e745_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9706 | |
| 9707 | |
| 9708 | -- |
| 9709 | -- Name: core_slicetag_slice_id_75dfa2524457256_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9710 | -- |
| 9711 | |
| 9712 | ALTER TABLE ONLY core_slicetag |
| 9713 | ADD CONSTRAINT core_slicetag_slice_id_75dfa2524457256_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9714 | |
| 9715 | |
| 9716 | -- |
| 9717 | -- Name: core_tag_service_id_5e53fc9f784e1c0_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9718 | -- |
| 9719 | |
| 9720 | ALTER TABLE ONLY core_tag |
| 9721 | ADD CONSTRAINT core_tag_service_id_5e53fc9f784e1c0_fk_core_service_id FOREIGN KEY (service_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9722 | |
| 9723 | |
| 9724 | -- |
| 9725 | -- Name: core_te_provider_service_id_6f2ead723387396a_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9726 | -- |
| 9727 | |
| 9728 | ALTER TABLE ONLY core_tenant |
| 9729 | ADD CONSTRAINT core_te_provider_service_id_6f2ead723387396a_fk_core_service_id FOREIGN KEY (provider_service_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9730 | |
| 9731 | |
| 9732 | -- |
| 9733 | -- Name: core_te_subscriber_tenant_id_5c45dc20d190aa0f_fk_core_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9734 | -- |
| 9735 | |
| 9736 | ALTER TABLE ONLY core_tenant |
| 9737 | ADD CONSTRAINT core_te_subscriber_tenant_id_5c45dc20d190aa0f_fk_core_tenant_id FOREIGN KEY (subscriber_tenant_id) REFERENCES core_tenant(id) DEFERRABLE INITIALLY DEFERRED; |
| 9738 | |
| 9739 | |
| 9740 | -- |
| 9741 | -- Name: core_tena_tenant_root_id_27d6362f903728d9_fk_core_tenantroot_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9742 | -- |
| 9743 | |
| 9744 | ALTER TABLE ONLY core_tenantrootprivilege |
| 9745 | ADD CONSTRAINT core_tena_tenant_root_id_27d6362f903728d9_fk_core_tenantroot_id FOREIGN KEY (tenant_root_id) REFERENCES core_tenantroot(id) DEFERRABLE INITIALLY DEFERRED; |
| 9746 | |
| 9747 | |
| 9748 | -- |
| 9749 | -- Name: core_tenant_subscriber_user_id_2fad15bb074ed3d6_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9750 | -- |
| 9751 | |
| 9752 | ALTER TABLE ONLY core_tenant |
| 9753 | ADD CONSTRAINT core_tenant_subscriber_user_id_2fad15bb074ed3d6_fk_core_user_id FOREIGN KEY (subscriber_user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9754 | |
| 9755 | |
| 9756 | -- |
| 9757 | -- Name: core_tenantattribut_tenant_id_aef1dc094229bec_fk_core_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9758 | -- |
| 9759 | |
| 9760 | ALTER TABLE ONLY core_tenantattribute |
| 9761 | ADD CONSTRAINT core_tenantattribut_tenant_id_aef1dc094229bec_fk_core_tenant_id FOREIGN KEY (tenant_id) REFERENCES core_tenant(id) DEFERRABLE INITIALLY DEFERRED; |
| 9762 | |
| 9763 | |
| 9764 | -- |
| 9765 | -- Name: core_tenantro_role_id_56bfa65de5fb299_fk_core_tenantrootrole_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9766 | -- |
| 9767 | |
| 9768 | ALTER TABLE ONLY core_tenantrootprivilege |
| 9769 | ADD CONSTRAINT core_tenantro_role_id_56bfa65de5fb299_fk_core_tenantrootrole_id FOREIGN KEY (role_id) REFERENCES core_tenantrootrole(id) DEFERRABLE INITIALLY DEFERRED; |
| 9770 | |
| 9771 | |
| 9772 | -- |
| 9773 | -- Name: core_tenantrootprivile_user_id_77f85e71ff279b56_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9774 | -- |
| 9775 | |
| 9776 | ALTER TABLE ONLY core_tenantrootprivilege |
| 9777 | ADD CONSTRAINT core_tenantrootprivile_user_id_77f85e71ff279b56_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9778 | |
| 9779 | |
| 9780 | -- |
| 9781 | -- Name: core_user_site_id_3cc7d076f7b58a7_fk_core_site_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9782 | -- |
| 9783 | |
| 9784 | ALTER TABLE ONLY core_user |
| 9785 | ADD CONSTRAINT core_user_site_id_3cc7d076f7b58a7_fk_core_site_id FOREIGN KEY (site_id) REFERENCES core_site(id) DEFERRABLE INITIALLY DEFERRED; |
| 9786 | |
| 9787 | |
| 9788 | -- |
| 9789 | -- Name: core_usercredential_user_id_2db1046eae94c01a_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9790 | -- |
| 9791 | |
| 9792 | ALTER TABLE ONLY core_usercredential |
| 9793 | ADD CONSTRAINT core_usercredential_user_id_2db1046eae94c01a_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9794 | |
| 9795 | |
| 9796 | -- |
| 9797 | -- Name: core_userdashboardview_user_id_66fac29b72c1b321_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9798 | -- |
| 9799 | |
| 9800 | ALTER TABLE ONLY core_userdashboardview |
| 9801 | ADD CONSTRAINT core_userdashboardview_user_id_66fac29b72c1b321_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9802 | |
| 9803 | |
| 9804 | -- |
| 9805 | -- Name: d9aeae61481f9ccd18f57c7b51a38461; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9806 | -- |
| 9807 | |
| 9808 | ALTER TABLE ONLY hpc_sitemap |
| 9809 | ADD CONSTRAINT d9aeae61481f9ccd18f57c7b51a38461 FOREIGN KEY ("hpcService_id") REFERENCES hpc_hpcservice(service_ptr_id) DEFERRABLE INITIALLY DEFERRED; |
| 9810 | |
| 9811 | |
| 9812 | -- |
| 9813 | -- Name: defaultoriginserver_id_3cb657d79e69f1e9_fk_hpc_originserver_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9814 | -- |
| 9815 | |
| 9816 | ALTER TABLE ONLY hpc_cdnprefix |
| 9817 | ADD CONSTRAINT defaultoriginserver_id_3cb657d79e69f1e9_fk_hpc_originserver_id FOREIGN KEY ("defaultOriginServer_id") REFERENCES hpc_originserver(id) DEFERRABLE INITIALLY DEFERRED; |
| 9818 | |
| 9819 | |
| 9820 | -- |
| 9821 | -- Name: djan_content_type_id_697914295151027a_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9822 | -- |
| 9823 | |
| 9824 | ALTER TABLE ONLY django_admin_log |
| 9825 | ADD CONSTRAINT djan_content_type_id_697914295151027a_fk_django_content_type_id FOREIGN KEY (content_type_id) REFERENCES django_content_type(id) DEFERRABLE INITIALLY DEFERRED; |
| 9826 | |
| 9827 | |
| 9828 | -- |
| 9829 | -- Name: django_admin_log_user_id_52fdd58701c5f563_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9830 | -- |
| 9831 | |
| 9832 | ALTER TABLE ONLY django_admin_log |
| 9833 | ADD CONSTRAINT django_admin_log_user_id_52fdd58701c5f563_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9834 | |
| 9835 | |
| 9836 | -- |
| 9837 | -- Name: ea3ce8ae9fc3a320680647cef82b1a56; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9838 | -- |
| 9839 | |
| 9840 | ALTER TABLE ONLY hpc_serviceprovider |
| 9841 | ADD CONSTRAINT ea3ce8ae9fc3a320680647cef82b1a56 FOREIGN KEY ("hpcService_id") REFERENCES hpc_hpcservice(service_ptr_id) DEFERRABLE INITIALLY DEFERRED; |
| 9842 | |
| 9843 | |
| 9844 | -- |
| 9845 | -- Name: h_contentprovider_id_1420a46480bb1aff_fk_hpc_contentprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9846 | -- |
| 9847 | |
| 9848 | ALTER TABLE ONLY hpc_contentprovider_users |
| 9849 | ADD CONSTRAINT h_contentprovider_id_1420a46480bb1aff_fk_hpc_contentprovider_id FOREIGN KEY (contentprovider_id) REFERENCES hpc_contentprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9850 | |
| 9851 | |
| 9852 | -- |
| 9853 | -- Name: h_contentprovider_id_2f27d5fdbb2459c8_fk_hpc_contentprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9854 | -- |
| 9855 | |
| 9856 | ALTER TABLE ONLY hpc_originserver |
| 9857 | ADD CONSTRAINT h_contentprovider_id_2f27d5fdbb2459c8_fk_hpc_contentprovider_id FOREIGN KEY ("contentProvider_id") REFERENCES hpc_contentprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9858 | |
| 9859 | |
| 9860 | -- |
| 9861 | -- Name: h_contentprovider_id_63639a8e6ca8e2cd_fk_hpc_contentprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9862 | -- |
| 9863 | |
| 9864 | ALTER TABLE ONLY hpc_cdnprefix |
| 9865 | ADD CONSTRAINT h_contentprovider_id_63639a8e6ca8e2cd_fk_hpc_contentprovider_id FOREIGN KEY ("contentProvider_id") REFERENCES hpc_contentprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9866 | |
| 9867 | |
| 9868 | -- |
| 9869 | -- Name: h_contentprovider_id_7acf72f284b3b30e_fk_hpc_contentprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9870 | -- |
| 9871 | |
| 9872 | ALTER TABLE ONLY hpc_accessmap |
| 9873 | ADD CONSTRAINT h_contentprovider_id_7acf72f284b3b30e_fk_hpc_contentprovider_id FOREIGN KEY ("contentProvider_id") REFERENCES hpc_contentprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9874 | |
| 9875 | |
| 9876 | -- |
| 9877 | -- Name: h_serviceprovider_id_1b9fb41a73ac1b6a_fk_hpc_serviceprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9878 | -- |
| 9879 | |
| 9880 | ALTER TABLE ONLY hpc_contentprovider |
| 9881 | ADD CONSTRAINT h_serviceprovider_id_1b9fb41a73ac1b6a_fk_hpc_serviceprovider_id FOREIGN KEY ("serviceProvider_id") REFERENCES hpc_serviceprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9882 | |
| 9883 | |
| 9884 | -- |
| 9885 | -- Name: h_serviceprovider_id_788bfbe86c90f205_fk_hpc_serviceprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9886 | -- |
| 9887 | |
| 9888 | ALTER TABLE ONLY hpc_sitemap |
| 9889 | ADD CONSTRAINT h_serviceprovider_id_788bfbe86c90f205_fk_hpc_serviceprovider_id FOREIGN KEY ("serviceProvider_id") REFERENCES hpc_serviceprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9890 | |
| 9891 | |
| 9892 | -- |
| 9893 | -- Name: hp_contentprovider_id_2a37a8e8bee9c03_fk_hpc_contentprovider_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9894 | -- |
| 9895 | |
| 9896 | ALTER TABLE ONLY hpc_sitemap |
| 9897 | ADD CONSTRAINT hp_contentprovider_id_2a37a8e8bee9c03_fk_hpc_contentprovider_id FOREIGN KEY ("contentProvider_id") REFERENCES hpc_contentprovider(id) DEFERRABLE INITIALLY DEFERRED; |
| 9898 | |
| 9899 | |
| 9900 | -- |
| 9901 | -- Name: hpc_contentprovider_us_user_id_480a7cd783fecf37_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9902 | -- |
| 9903 | |
| 9904 | ALTER TABLE ONLY hpc_contentprovider_users |
| 9905 | ADD CONSTRAINT hpc_contentprovider_us_user_id_480a7cd783fecf37_fk_core_user_id FOREIGN KEY (user_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9906 | |
| 9907 | |
| 9908 | -- |
| 9909 | -- Name: hpc_hpcservi_service_ptr_id_1b2f328c77b1554d_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9910 | -- |
| 9911 | |
| 9912 | ALTER TABLE ONLY hpc_hpcservice |
| 9913 | ADD CONSTRAINT hpc_hpcservi_service_ptr_id_1b2f328c77b1554d_fk_core_service_id FOREIGN KEY (service_ptr_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9914 | |
| 9915 | |
| 9916 | -- |
| 9917 | -- Name: hpc_sitemap_cdnprefix_id_3c0b2f75c5a9a81e_fk_hpc_cdnprefix_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9918 | -- |
| 9919 | |
| 9920 | ALTER TABLE ONLY hpc_sitemap |
| 9921 | ADD CONSTRAINT hpc_sitemap_cdnprefix_id_3c0b2f75c5a9a81e_fk_hpc_cdnprefix_id FOREIGN KEY ("cdnPrefix_id") REFERENCES hpc_cdnprefix(id) DEFERRABLE INITIALLY DEFERRED; |
| 9922 | |
| 9923 | |
| 9924 | -- |
| 9925 | -- Name: requestroute_service_ptr_id_479451a78740d081_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9926 | -- |
| 9927 | |
| 9928 | ALTER TABLE ONLY requestrouter_requestrouterservice |
| 9929 | ADD CONSTRAINT requestroute_service_ptr_id_479451a78740d081_fk_core_service_id FOREIGN KEY (service_ptr_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9930 | |
| 9931 | |
| 9932 | -- |
| 9933 | -- Name: requestrouter_serv_owner_id_5c71a9586041d2bc_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9934 | -- |
| 9935 | |
| 9936 | ALTER TABLE ONLY requestrouter_servicemap |
| 9937 | ADD CONSTRAINT requestrouter_serv_owner_id_5c71a9586041d2bc_fk_core_service_id FOREIGN KEY (owner_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9938 | |
| 9939 | |
| 9940 | -- |
| 9941 | -- Name: requestrouter_servic_slice_id_50e57057a561f22f_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9942 | -- |
| 9943 | |
| 9944 | ALTER TABLE ONLY requestrouter_servicemap |
| 9945 | ADD CONSTRAINT requestrouter_servic_slice_id_50e57057a561f22f_fk_core_slice_id FOREIGN KEY (slice_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9946 | |
| 9947 | |
| 9948 | -- |
| 9949 | -- Name: sy_volume_id_id_7dd16c76bfd7b129_fk_syndicate_storage_volume_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9950 | -- |
| 9951 | |
| 9952 | ALTER TABLE ONLY syndicate_storage_volumeslice |
| 9953 | ADD CONSTRAINT sy_volume_id_id_7dd16c76bfd7b129_fk_syndicate_storage_volume_id FOREIGN KEY (volume_id_id) REFERENCES syndicate_storage_volume(id) DEFERRABLE INITIALLY DEFERRED; |
| 9954 | |
| 9955 | |
| 9956 | -- |
| 9957 | -- Name: syndi_volume_id_3718f5b02d2245ce_fk_syndicate_storage_volume_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9958 | -- |
| 9959 | |
| 9960 | ALTER TABLE ONLY syndicate_storage_volumeaccessright |
| 9961 | ADD CONSTRAINT syndi_volume_id_3718f5b02d2245ce_fk_syndicate_storage_volume_id FOREIGN KEY (volume_id) REFERENCES syndicate_storage_volume(id) DEFERRABLE INITIALLY DEFERRED; |
| 9962 | |
| 9963 | |
| 9964 | -- |
| 9965 | -- Name: syndicate_st_service_ptr_id_26ca3aeabed50b6d_fk_core_service_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9966 | -- |
| 9967 | |
| 9968 | ALTER TABLE ONLY syndicate_storage_syndicateservice |
| 9969 | ADD CONSTRAINT syndicate_st_service_ptr_id_26ca3aeabed50b6d_fk_core_service_id FOREIGN KEY (service_ptr_id) REFERENCES core_service(id) DEFERRABLE INITIALLY DEFERRED; |
| 9970 | |
| 9971 | |
| 9972 | -- |
| 9973 | -- Name: syndicate_storage__owner_id_id_3d3e3d492d6cd6b5_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9974 | -- |
| 9975 | |
| 9976 | ALTER TABLE ONLY syndicate_storage_volumeaccessright |
| 9977 | ADD CONSTRAINT syndicate_storage__owner_id_id_3d3e3d492d6cd6b5_fk_core_user_id FOREIGN KEY (owner_id_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9978 | |
| 9979 | |
| 9980 | -- |
| 9981 | -- Name: syndicate_storage__owner_id_id_7a99f36bf51f2c78_fk_core_user_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9982 | -- |
| 9983 | |
| 9984 | ALTER TABLE ONLY syndicate_storage_volume |
| 9985 | ADD CONSTRAINT syndicate_storage__owner_id_id_7a99f36bf51f2c78_fk_core_user_id FOREIGN KEY (owner_id_id) REFERENCES core_user(id) DEFERRABLE INITIALLY DEFERRED; |
| 9986 | |
| 9987 | |
| 9988 | -- |
| 9989 | -- Name: syndicate_storage_slice_id_id_1c80c36535559ad6_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9990 | -- |
| 9991 | |
| 9992 | ALTER TABLE ONLY syndicate_storage_slicesecret |
| 9993 | ADD CONSTRAINT syndicate_storage_slice_id_id_1c80c36535559ad6_fk_core_slice_id FOREIGN KEY (slice_id_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 9994 | |
| 9995 | |
| 9996 | -- |
| 9997 | -- Name: syndicate_storage_slice_id_id_36fa39a9ae458538_fk_core_slice_id; Type: FK CONSTRAINT; Schema: public; Owner: postgres |
| 9998 | -- |
| 9999 | |
| 10000 | ALTER TABLE ONLY syndicate_storage_volumeslice |
| 10001 | ADD CONSTRAINT syndicate_storage_slice_id_id_36fa39a9ae458538_fk_core_slice_id FOREIGN KEY (slice_id_id) REFERENCES core_slice(id) DEFERRABLE INITIALLY DEFERRED; |
| 10002 | |
| 10003 | |
| 10004 | -- |
| 10005 | -- Name: public; Type: ACL; Schema: -; Owner: postgres |
| 10006 | -- |
| 10007 | |
| 10008 | REVOKE ALL ON SCHEMA public FROM PUBLIC; |
| 10009 | REVOKE ALL ON SCHEMA public FROM postgres; |
| 10010 | GRANT ALL ON SCHEMA public TO postgres; |
| 10011 | GRANT ALL ON SCHEMA public TO PUBLIC; |
| 10012 | |
| 10013 | |
| 10014 | -- |
| 10015 | -- PostgreSQL database dump complete |
| 10016 | -- |
| 10017 | |