Advertisement
Guest User

Untitled

a guest
Dec 9th, 2015
1,866
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 87.62 KB | None | 0 0
  1. --
  2. -- PostgreSQL database dump
  3. --
  4.  
  5. SET statement_timeout = 0;
  6. SET lock_timeout = 0;
  7. SET client_encoding = 'UTF8';
  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: assignments; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  34. --
  35.  
  36. CREATE TABLE assignments (
  37.     id INTEGER NOT NULL,
  38.     tasks_flags INTEGER DEFAULT 0 NOT NULL,
  39.     cost_cents INTEGER,
  40.     start_date TIMESTAMP WITHOUT TIME zone,
  41.     planned_end_date TIMESTAMP WITHOUT TIME zone,
  42.     actual_end_date TIMESTAMP WITHOUT TIME zone,
  43.     rating INTEGER,
  44.     vendor_id INTEGER NOT NULL,
  45.     project_id INTEGER NOT NULL
  46. );
  47.  
  48.  
  49. ALTER TABLE public.assignments OWNER TO agufranov;
  50.  
  51. --
  52. -- Name: assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  53. --
  54.  
  55. CREATE SEQUENCE assignments_id_seq
  56.     START WITH 1
  57.     INCREMENT BY 1
  58.     NO MINVALUE
  59.     NO MAXVALUE
  60.     CACHE 1;
  61.  
  62.  
  63. ALTER TABLE public.assignments_id_seq OWNER TO agufranov;
  64.  
  65. --
  66. -- Name: assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  67. --
  68.  
  69. ALTER SEQUENCE assignments_id_seq OWNED BY assignments.id;
  70.  
  71.  
  72. --
  73. -- Name: clients; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  74. --
  75.  
  76. CREATE TABLE clients (
  77.     id INTEGER NOT NULL,
  78.     name CHARACTER VARYING NOT NULL,
  79.     address text,
  80.     country_id INTEGER
  81. );
  82.  
  83.  
  84. ALTER TABLE public.clients OWNER TO agufranov;
  85.  
  86. --
  87. -- Name: clients_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  88. --
  89.  
  90. CREATE SEQUENCE clients_id_seq
  91.     START WITH 1
  92.     INCREMENT BY 1
  93.     NO MINVALUE
  94.     NO MAXVALUE
  95.     CACHE 1;
  96.  
  97.  
  98. ALTER TABLE public.clients_id_seq OWNER TO agufranov;
  99.  
  100. --
  101. -- Name: clients_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  102. --
  103.  
  104. ALTER SEQUENCE clients_id_seq OWNED BY clients.id;
  105.  
  106.  
  107. --
  108. -- Name: conditions; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  109. --
  110.  
  111. CREATE TABLE conditions (
  112.     id INTEGER NOT NULL,
  113.     name CHARACTER VARYING NOT NULL
  114. );
  115.  
  116.  
  117. ALTER TABLE public.conditions OWNER TO agufranov;
  118.  
  119. --
  120. -- Name: conditions_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  121. --
  122.  
  123. CREATE SEQUENCE conditions_id_seq
  124.     START WITH 1
  125.     INCREMENT BY 1
  126.     NO MINVALUE
  127.     NO MAXVALUE
  128.     CACHE 1;
  129.  
  130.  
  131. ALTER TABLE public.conditions_id_seq OWNER TO agufranov;
  132.  
  133. --
  134. -- Name: conditions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  135. --
  136.  
  137. ALTER SEQUENCE conditions_id_seq OWNED BY conditions.id;
  138.  
  139.  
  140. --
  141. -- Name: countries; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  142. --
  143.  
  144. CREATE TABLE countries (
  145.     id INTEGER NOT NULL,
  146.     name CHARACTER VARYING NOT NULL,
  147.     code CHARACTER VARYING
  148. );
  149.  
  150.  
  151. ALTER TABLE public.countries OWNER TO agufranov;
  152.  
  153. --
  154. -- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  155. --
  156.  
  157. CREATE SEQUENCE countries_id_seq
  158.     START WITH 1
  159.     INCREMENT BY 1
  160.     NO MINVALUE
  161.     NO MAXVALUE
  162.     CACHE 1;
  163.  
  164.  
  165. ALTER TABLE public.countries_id_seq OWNER TO agufranov;
  166.  
  167. --
  168. -- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  169. --
  170.  
  171. ALTER SEQUENCE countries_id_seq OWNED BY countries.id;
  172.  
  173.  
  174. --
  175. -- Name: languages; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  176. --
  177.  
  178. CREATE TABLE languages (
  179.     id INTEGER NOT NULL,
  180.     name CHARACTER VARYING NOT NULL,
  181.     native_name CHARACTER VARYING,
  182.     code CHARACTER VARYING
  183. );
  184.  
  185.  
  186. ALTER TABLE public.languages OWNER TO agufranov;
  187.  
  188. --
  189. -- Name: languages_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  190. --
  191.  
  192. CREATE SEQUENCE languages_id_seq
  193.     START WITH 1
  194.     INCREMENT BY 1
  195.     NO MINVALUE
  196.     NO MAXVALUE
  197.     CACHE 1;
  198.  
  199.  
  200. ALTER TABLE public.languages_id_seq OWNER TO agufranov;
  201.  
  202. --
  203. -- Name: languages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  204. --
  205.  
  206. ALTER SEQUENCE languages_id_seq OWNED BY languages.id;
  207.  
  208.  
  209. --
  210. -- Name: professions; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  211. --
  212.  
  213. CREATE TABLE professions (
  214.     id INTEGER NOT NULL,
  215.     title CHARACTER VARYING NOT NULL
  216. );
  217.  
  218.  
  219. ALTER TABLE public.professions OWNER TO agufranov;
  220.  
  221. --
  222. -- Name: professions_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  223. --
  224.  
  225. CREATE SEQUENCE professions_id_seq
  226.     START WITH 1
  227.     INCREMENT BY 1
  228.     NO MINVALUE
  229.     NO MAXVALUE
  230.     CACHE 1;
  231.  
  232.  
  233. ALTER TABLE public.professions_id_seq OWNER TO agufranov;
  234.  
  235. --
  236. -- Name: professions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  237. --
  238.  
  239. ALTER SEQUENCE professions_id_seq OWNED BY professions.id;
  240.  
  241.  
  242. --
  243. -- Name: project_managers; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  244. --
  245.  
  246. CREATE TABLE project_managers (
  247.     id INTEGER NOT NULL,
  248.     name CHARACTER VARYING NOT NULL,
  249.     email CHARACTER VARYING,
  250.     address CHARACTER VARYING,
  251.     client_id INTEGER NOT NULL
  252. );
  253.  
  254.  
  255. ALTER TABLE public.project_managers OWNER TO agufranov;
  256.  
  257. --
  258. -- Name: project_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  259. --
  260.  
  261. CREATE SEQUENCE project_managers_id_seq
  262.     START WITH 1
  263.     INCREMENT BY 1
  264.     NO MINVALUE
  265.     NO MAXVALUE
  266.     CACHE 1;
  267.  
  268.  
  269. ALTER TABLE public.project_managers_id_seq OWNER TO agufranov;
  270.  
  271. --
  272. -- Name: project_managers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  273. --
  274.  
  275. ALTER SEQUENCE project_managers_id_seq OWNED BY project_managers.id;
  276.  
  277.  
  278. --
  279. -- Name: projects; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  280. --
  281.  
  282. CREATE TABLE projects (
  283.     id INTEGER NOT NULL,
  284.     NUMBER CHARACTER VARYING,
  285.     project_id_client CHARACTER VARYING,
  286.     words_count INTEGER,
  287.     budget_cents INTEGER,
  288.     STATUS INTEGER,
  289.     start_date TIMESTAMP WITHOUT TIME zone,
  290.     planned_end_date TIMESTAMP WITHOUT TIME zone,
  291.     actual_end_date TIMESTAMP WITHOUT TIME zone,
  292.     comments text,
  293.     client_id INTEGER,
  294.     project_manager_id INTEGER,
  295.     country_id INTEGER,
  296.     original_language_id INTEGER,
  297.     target_language_id INTEGER,
  298.     condition_id INTEGER,
  299.     speciality_id INTEGER
  300. );
  301.  
  302.  
  303. ALTER TABLE public.projects OWNER TO agufranov;
  304.  
  305. --
  306. -- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  307. --
  308.  
  309. CREATE SEQUENCE projects_id_seq
  310.     START WITH 1
  311.     INCREMENT BY 1
  312.     NO MINVALUE
  313.     NO MAXVALUE
  314.     CACHE 1;
  315.  
  316.  
  317. ALTER TABLE public.projects_id_seq OWNER TO agufranov;
  318.  
  319. --
  320. -- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  321. --
  322.  
  323. ALTER SEQUENCE projects_id_seq OWNED BY projects.id;
  324.  
  325.  
  326. --
  327. -- Name: schema_migrations; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  328. --
  329.  
  330. CREATE TABLE schema_migrations (
  331.     version CHARACTER VARYING NOT NULL
  332. );
  333.  
  334.  
  335. ALTER TABLE public.schema_migrations OWNER TO agufranov;
  336.  
  337. --
  338. -- Name: specialities; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  339. --
  340.  
  341. CREATE TABLE specialities (
  342.     id INTEGER NOT NULL,
  343.     title CHARACTER VARYING NOT NULL
  344. );
  345.  
  346.  
  347. ALTER TABLE public.specialities OWNER TO agufranov;
  348.  
  349. --
  350. -- Name: specialities_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  351. --
  352.  
  353. CREATE SEQUENCE specialities_id_seq
  354.     START WITH 1
  355.     INCREMENT BY 1
  356.     NO MINVALUE
  357.     NO MAXVALUE
  358.     CACHE 1;
  359.  
  360.  
  361. ALTER TABLE public.specialities_id_seq OWNER TO agufranov;
  362.  
  363. --
  364. -- Name: specialities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  365. --
  366.  
  367. ALTER SEQUENCE specialities_id_seq OWNED BY specialities.id;
  368.  
  369.  
  370. --
  371. -- Name: vendor_countries; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  372. --
  373.  
  374. CREATE TABLE vendor_countries (
  375.     id INTEGER NOT NULL,
  376.     vendor_id INTEGER NOT NULL,
  377.     country_id INTEGER NOT NULL
  378. );
  379.  
  380.  
  381. ALTER TABLE public.vendor_countries OWNER TO agufranov;
  382.  
  383. --
  384. -- Name: vendor_countries_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  385. --
  386.  
  387. CREATE SEQUENCE vendor_countries_id_seq
  388.     START WITH 1
  389.     INCREMENT BY 1
  390.     NO MINVALUE
  391.     NO MAXVALUE
  392.     CACHE 1;
  393.  
  394.  
  395. ALTER TABLE public.vendor_countries_id_seq OWNER TO agufranov;
  396.  
  397. --
  398. -- Name: vendor_countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  399. --
  400.  
  401. ALTER SEQUENCE vendor_countries_id_seq OWNED BY vendor_countries.id;
  402.  
  403.  
  404. --
  405. -- Name: vendor_languages; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  406. --
  407.  
  408. CREATE TABLE vendor_languages (
  409.     id INTEGER NOT NULL,
  410.     vendor_id INTEGER NOT NULL,
  411.     language_id INTEGER NOT NULL,
  412.     proficiency INTEGER
  413. );
  414.  
  415.  
  416. ALTER TABLE public.vendor_languages OWNER TO agufranov;
  417.  
  418. --
  419. -- Name: vendor_languages_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  420. --
  421.  
  422. CREATE SEQUENCE vendor_languages_id_seq
  423.     START WITH 1
  424.     INCREMENT BY 1
  425.     NO MINVALUE
  426.     NO MAXVALUE
  427.     CACHE 1;
  428.  
  429.  
  430. ALTER TABLE public.vendor_languages_id_seq OWNER TO agufranov;
  431.  
  432. --
  433. -- Name: vendor_languages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  434. --
  435.  
  436. ALTER SEQUENCE vendor_languages_id_seq OWNED BY vendor_languages.id;
  437.  
  438.  
  439. --
  440. -- Name: vendors; Type: TABLE; Schema: public; Owner: agufranov; Tablespace:
  441. --
  442.  
  443. CREATE TABLE vendors (
  444.     id INTEGER NOT NULL,
  445.     name CHARACTER VARYING NOT NULL,
  446.     mapi_code CHARACTER VARYING,
  447.     tasks_flags INTEGER DEFAULT 0 NOT NULL,
  448.     rate_hour_cents INTEGER,
  449.     rate_interview_cents INTEGER,
  450.     rate_word_cents INTEGER,
  451.     comments text,
  452.     profession_id INTEGER,
  453.     condition_id INTEGER,
  454.     speciality_id INTEGER
  455. );
  456.  
  457.  
  458. ALTER TABLE public.vendors OWNER TO agufranov;
  459.  
  460. --
  461. -- Name: vendors_id_seq; Type: SEQUENCE; Schema: public; Owner: agufranov
  462. --
  463.  
  464. CREATE SEQUENCE vendors_id_seq
  465.     START WITH 1
  466.     INCREMENT BY 1
  467.     NO MINVALUE
  468.     NO MAXVALUE
  469.     CACHE 1;
  470.  
  471.  
  472. ALTER TABLE public.vendors_id_seq OWNER TO agufranov;
  473.  
  474. --
  475. -- Name: vendors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: agufranov
  476. --
  477.  
  478. ALTER SEQUENCE vendors_id_seq OWNED BY vendors.id;
  479.  
  480.  
  481. --
  482. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  483. --
  484.  
  485. ALTER TABLE ONLY assignments ALTER COLUMN id SET DEFAULT NEXTVAL('assignments_id_seq'::regclass);
  486.  
  487.  
  488. --
  489. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  490. --
  491.  
  492. ALTER TABLE ONLY clients ALTER COLUMN id SET DEFAULT NEXTVAL('clients_id_seq'::regclass);
  493.  
  494.  
  495. --
  496. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  497. --
  498.  
  499. ALTER TABLE ONLY conditions ALTER COLUMN id SET DEFAULT NEXTVAL('conditions_id_seq'::regclass);
  500.  
  501.  
  502. --
  503. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  504. --
  505.  
  506. ALTER TABLE ONLY countries ALTER COLUMN id SET DEFAULT NEXTVAL('countries_id_seq'::regclass);
  507.  
  508.  
  509. --
  510. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  511. --
  512.  
  513. ALTER TABLE ONLY languages ALTER COLUMN id SET DEFAULT NEXTVAL('languages_id_seq'::regclass);
  514.  
  515.  
  516. --
  517. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  518. --
  519.  
  520. ALTER TABLE ONLY professions ALTER COLUMN id SET DEFAULT NEXTVAL('professions_id_seq'::regclass);
  521.  
  522.  
  523. --
  524. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  525. --
  526.  
  527. ALTER TABLE ONLY project_managers ALTER COLUMN id SET DEFAULT NEXTVAL('project_managers_id_seq'::regclass);
  528.  
  529.  
  530. --
  531. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  532. --
  533.  
  534. ALTER TABLE ONLY projects ALTER COLUMN id SET DEFAULT NEXTVAL('projects_id_seq'::regclass);
  535.  
  536.  
  537. --
  538. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  539. --
  540.  
  541. ALTER TABLE ONLY specialities ALTER COLUMN id SET DEFAULT NEXTVAL('specialities_id_seq'::regclass);
  542.  
  543.  
  544. --
  545. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  546. --
  547.  
  548. ALTER TABLE ONLY vendor_countries ALTER COLUMN id SET DEFAULT NEXTVAL('vendor_countries_id_seq'::regclass);
  549.  
  550.  
  551. --
  552. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  553. --
  554.  
  555. ALTER TABLE ONLY vendor_languages ALTER COLUMN id SET DEFAULT NEXTVAL('vendor_languages_id_seq'::regclass);
  556.  
  557.  
  558. --
  559. -- Name: id; Type: DEFAULT; Schema: public; Owner: agufranov
  560. --
  561.  
  562. ALTER TABLE ONLY vendors ALTER COLUMN id SET DEFAULT NEXTVAL('vendors_id_seq'::regclass);
  563.  
  564.  
  565. --
  566. -- Data for Name: assignments; Type: TABLE DATA; Schema: public; Owner: agufranov
  567. --
  568. --
  569. -- Name: assignments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  570. --
  571.  
  572. SELECT pg_catalog.SETVAL('assignments_id_seq', 395, TRUE);
  573.  
  574.  
  575. --
  576. -- Data for Name: clients; Type: TABLE DATA; Schema: public; Owner: agufranov
  577. --
  578.  
  579. COPY clients (id, name, address, country_id) FROM stdin;
  580. 458 Feest-Waelchi   Darenmouth, 464 Champlin Manor  10252
  581. 459 Ferry Inc   North Barneyfurt, 942 Charles Shoals    10370
  582. 460 Ankunding, Swaniawski AND Osinski   South Cleora, 721 Heller Square 10309
  583. 461 Herzog Inc  West Tristianport, 375 Garry Tunnel 10359
  584. 462 Lynch-Renner    Florianland, 87776 Tromp Plain  10430
  585. 463 Champlin AND Sons   Lake Joyceberg, 1212 Savion Wells   10318
  586. 464 Luettgen LLC    Bertramfort, 932 Antone Gateway 10293
  587. 465 Labadie-Koss    Morissettemouth, 5530 Mossie Plains 10284
  588. 466 Becker AND Sons Feestview, 5909 Roy Plaza   10251
  589. 467 Kilback-Flatley Lake Delphineshire, 2617 Lenny Mission  10443
  590. 468 Kshlerin, Nicolas AND Trantow   Kieratown, 904 VonRueden Flats  10398
  591. 469 Marquardt AND Sons  Ulicesfurt, 4099 Fadel Coves    10289
  592. 470 Smith-Streich   North Deannaland, 179 Cartwright Road   10403
  593. 471 Ziemann GROUP   South Gianni, 9613 Hamill Orchard   10271
  594. 472 Hayes-Ledner    NEW Clarkmouth, 3768 Muller Bypass  10273
  595. 473 Von-Runte   South Jonstad, 22121 Cade Plaza 10353
  596. 474 Beer, Larkin AND Bradtke    Freddyville, 8127 Rowena Fork   10272
  597. 475 Mann-Mosciski   Fadelland, 635 Harber Garden    10434
  598. 476 Zboncak-Durgan  Mosciskichester, 87561 Shanna Locks 10436
  599. 477 Kshlerin, O'Keefe and Spinka    South Kiara, 708 Misael Roads   10399
  600. \.
  601.  
  602.  
  603. --
  604. -- Name: clients_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  605. --
  606.  
  607. SELECT pg_catalog.setval('clients_id_seq', 477, true);
  608.  
  609.  
  610. --
  611. -- Data for Name: conditions; Type: TABLE DATA; Schema: public; Owner: agufranov
  612. --
  613.  
  614. COPY conditions (id, name) FROM stdin;
  615. 81  Condition 1
  616. 82  Condition 2
  617. \.
  618.  
  619.  
  620. --
  621. -- Name: conditions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  622. --
  623.  
  624. SELECT pg_catalog.setval('conditions_id_seq', 82, true);
  625.  
  626.  
  627. --
  628. -- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: agufranov
  629. --
  630.  
  631. COPY countries (id, name, code) FROM stdin;
  632. 10207   Afghanistan AF
  633. 10208   Åland Islands  AX
  634. 10209   Albania AL
  635. 10210   Algeria DZ
  636. 10211   American Samoa  AS
  637. 10212   AndorrA AD
  638. 10213   Angola  AO
  639. 10214   Anguilla    AI
  640. 10215   Antarctica  AQ
  641. 10216   Antigua and Barbuda AG
  642. 10217   Argentina   AR
  643. 10218   Armenia AM
  644. 10219   Aruba   AW
  645. 10220   Australia   AU
  646. 10221   Austria AT
  647. 10222   Azerbaijan  AZ
  648. 10223   Bahamas BS
  649. 10224   Bahrain BH
  650. 10225   Bangladesh  BD
  651. 10226   Barbados    BB
  652. 10227   Belarus BY
  653. 10228   Belgium BE
  654. 10229   Belize  BZ
  655. 10230   Benin   BJ
  656. 10231   Bermuda BM
  657. 10232   Bhutan  BT
  658. 10233   Bolivia BO
  659. 10234   Bosnia and Herzegovina  BA
  660. 10235   Botswana    BW
  661. 10236   Bouvet Island   BV
  662. 10237   Brazil  BR
  663. 10238   British Indian Ocean Territory  IO
  664. 10239   Brunei Darussalam   BN
  665. 10240   Bulgaria    BG
  666. 10241   Burkina Faso    BF
  667. 10242   Burundi BI
  668. 10243   Cambodia    KH
  669. 10244   Cameroon    CM
  670. 10245   Canada  CA
  671. 10246   Cape Verde  CV
  672. 10247   Cayman Islands  KY
  673. 10248   Central African Republic    CF
  674. 10249   Chad    TD
  675. 10250   Chile   CL
  676. 10251   China   CN
  677. 10252   Christmas Island    CX
  678. 10253   Cocos (Keeling) Islands CC
  679. 10254   Colombia    CO
  680. 10255   Comoros KM
  681. 10256   Congo   CG
  682. 10257   Congo, The Democratic Republic of the   CD
  683. 10258   Cook Islands    CK
  684. 10259   Costa Rica  CR
  685. 10260   Cote D"Ivoire   CI
  686. 10261   Croatia HR
  687. 10262   Cuba    CU
  688. 10263   Cyprus  CY
  689. 10264   Czech Republic  CZ
  690. 10265   Denmark DK
  691. 10266   Djibouti    DJ
  692. 10267   Dominica    DM
  693. 10268   Dominican Republic  DO
  694. 10269   Ecuador EC
  695. 10270   Egypt   EG
  696. 10271   El Salvador SV
  697. 10272   Equatorial Guinea   GQ
  698. 10273   Eritrea ER
  699. 10274   Estonia EE
  700. 10275   Ethiopia    ET
  701. 10276   Falkland Islands (Malvinas) FK
  702. 10277   Faroe Islands   FO
  703. 10278   Fiji    FJ
  704. 10279   Finland FI
  705. 10280   France  FR
  706. 10281   French Guiana   GF
  707. 10282   French Polynesia    PF
  708. 10283   French Southern Territories TF
  709. 10284   Gabon   GA
  710. 10285   Gambia  GM
  711. 10286   Georgia GE
  712. 10287   Germany DE
  713. 10288   Ghana   GH
  714. 10289   Gibraltar   GI
  715. 10290   Greece  GR
  716. 10291   Greenland   GL
  717. 10292   Grenada GD
  718. 10293   Guadeloupe  GP
  719. 10294   Guam    GU
  720. 10295   Guatemala   GT
  721. 10296   Guernsey    GG
  722. 10297   Guinea  GN
  723. 10298   Guinea-Bissau   GW
  724. 10299   Guyana  GY
  725. 10300   Haiti   HT
  726. 10301   Heard Island and Mcdonald Islands   HM
  727. 10302   Holy See (Vatican City State)   VA
  728. 10303   Honduras    HN
  729. 10304   Hong Kong   HK
  730. 10305   Hungary HU
  731. 10306   Iceland IS
  732. 10307   India   IN
  733. 10308   Indonesia   ID
  734. 10309   Iran, Islamic Republic Of   IR
  735. 10310   Iraq    IQ
  736. 10311   Ireland IE
  737. 10312   Isle of Man IM
  738. 10313   Israel  IL
  739. 10314   Italy   IT
  740. 10315   Jamaica JM
  741. 10316   Japan   JP
  742. 10317   Jersey  JE
  743. 10318   Jordan  JO
  744. 10319   Kazakhstan  KZ
  745. 10320   Kenya   KE
  746. 10321   Kiribati    KI
  747. 10322   Korea, Democratic People"S Republic of  KP
  748. 10323   Korea, Republic of  KR
  749. 10324   Kuwait  KW
  750. 10325   Kyrgyzstan  KG
  751. 10326   Lao People"S Democratic Republic    LA
  752. 10327   Latvia  LV
  753. 10328   Lebanon LB
  754. 10329   Lesotho LS
  755. 10330   Liberia LR
  756. 10331   Libyan Arab Jamahiriya  LY
  757. 10332   Liechtenstein   LI
  758. 10333   Lithuania   LT
  759. 10334   Luxembourg  LU
  760. 10335   Macao   MO
  761. 10336   Macedonia, The Former Yugoslav Republic of  MK
  762. 10337   Madagascar  MG
  763. 10338   Malawi  MW
  764. 10339   Malaysia    MY
  765. 10340   Maldives    MV
  766. 10341   Mali    ML
  767. 10342   Malta   MT
  768. 10343   Marshall Islands    MH
  769. 10344   Martinique  MQ
  770. 10345   Mauritania  MR
  771. 10346   Mauritius   MU
  772. 10347   Mayotte YT
  773. 10348   Mexico  MX
  774. 10349   Micronesia, Federated States of FM
  775. 10350   Moldova, Republic of    MD
  776. 10351   Monaco  MC
  777. 10352   Mongolia    MN
  778. 10353   Montserrat  MS
  779. 10354   Morocco MA
  780. 10355   Mozambique  MZ
  781. 10356   Myanmar MM
  782. 10357   Namibia NA
  783. 10358   Nauru   NR
  784. 10359   Nepal   NP
  785. 10360   Netherlands NL
  786. 10361   Netherlands Antilles    AN
  787. 10362   New Caledonia   NC
  788. 10363   New Zealand NZ
  789. 10364   Nicaragua   NI
  790. 10365   Niger   NE
  791. 10366   Nigeria NG
  792. 10367   Niue    NU
  793. 10368   Norfolk Island  NF
  794. 10369   Northern Mariana Islands    MP
  795. 10370   Norway  NO
  796. 10371   Oman    OM
  797. 10372   Pakistan    PK
  798. 10373   Palau   PW
  799. 10374   Palestinian Territory, Occupied PS
  800. 10375   Panama  PA
  801. 10376   Papua New Guinea    PG
  802. 10377   Paraguay    PY
  803. 10378   Peru    PE
  804. 10379   Philippines PH
  805. 10380   Pitcairn    PN
  806. 10381   Poland  PL
  807. 10382   Portugal    PT
  808. 10383   Puerto Rico PR
  809. 10384   Qatar   QA
  810. 10385   Reunion RE
  811. 10386   Romania RO
  812. 10387   Russian Federation  RU
  813. 10388   RWANDA  RW
  814. 10389   Saint Helena    SH
  815. 10390   Saint Kitts and Nevis   KN
  816. 10391   Saint Lucia LC
  817. 10392   Saint Pierre and Miquelon   PM
  818. 10393   Saint Vincent and the Grenadines    VC
  819. 10394   Samoa   WS
  820. 10395   San Marino  SM
  821. 10396   Sao Tome and Principe   ST
  822. 10397   Saudi Arabia    SA
  823. 10398   Senegal SN
  824. 10399   Serbia and Montenegro   CS
  825. 10400   Seychelles  SC
  826. 10401   Sierra Leone    SL
  827. 10402   Singapore   SG
  828. 10403   Slovakia    SK
  829. 10404   Slovenia    SI
  830. 10405   Solomon Islands SB
  831. 10406   Somalia SO
  832. 10407   South Africa    ZA
  833. 10408   South Georgia and the South Sandwich Islands    GS
  834. 10409   Spain   ES
  835. 10410   Sri Lanka   LK
  836. 10411   Sudan   SD
  837. 10412   Suriname    SR
  838. 10413   Svalbard and Jan Mayen  SJ
  839. 10414   Swaziland   SZ
  840. 10415   Sweden  SE
  841. 10416   Switzerland CH
  842. 10417   Syrian Arab Republic    SY
  843. 10418   Taiwan, Province of China   TW
  844. 10419   Tajikistan  TJ
  845. 10420   Tanzania, United Republic of    TZ
  846. 10421   Thailand    TH
  847. 10422   Timor-Leste TL
  848. 10423   Togo    TG
  849. 10424   Tokelau TK
  850. 10425   Tonga   TO
  851. 10426   Trinidad and Tobago TT
  852. 10427   Tunisia TN
  853. 10428   Turkey  TR
  854. 10429   Turkmenistan    TM
  855. 10430   Turks and Caicos Islands    TC
  856. 10431   Tuvalu  TV
  857. 10432   Uganda  UG
  858. 10433   Ukraine UA
  859. 10434   United Arab Emirates    AE
  860. 10435   United Kingdom  GB
  861. 10436   United States   US
  862. 10437   United States Minor Outlying Islands    UM
  863. 10438   Uruguay UY
  864. 10439   Uzbekistan  UZ
  865. 10440   Vanuatu VU
  866. 10441   Venezuela   VE
  867. 10442   Viet Nam    VN
  868. 10443   Virgin Islands, British VG
  869. 10444   Virgin Islands, U.S.    VI
  870. 10445   Wallis and Futuna   WF
  871. 10446   Western Sahara  EH
  872. 10447   Yemen   YE
  873. 10448   Zambia  ZM
  874. 10449   Zimbabwe    ZW
  875. \.
  876.  
  877.  
  878. --
  879. -- Name: countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  880. --
  881.  
  882. SELECT pg_catalog.setval('countries_id_seq', 10449, true);
  883.  
  884.  
  885. --
  886. -- Data for Name: languages; Type: TABLE DATA; Schema: public; Owner: agufranov
  887. --
  888.  
  889. COPY languages (id, name, native_name, code) FROM stdin;
  890. 7827    Abkhaz  аҧсуа  ab
  891. 7828    Afar    Afaraf  aa
  892. 7829    Afrikaans   Afrikaans   af
  893. 7830    Akan    Akan    ak
  894. 7831    Albanian    Shqip   sq
  895. 7832    Amharic አማርኛ    am
  896. 7833    Arabic  العربية  ar
  897. 7834    Aragonese   Aragonés   an
  898. 7835    Armenian    Հայերեն  hy
  899. 7836    Assamese    অসমীয়া   as
  900. 7837    Avaric  авар мацӀ, магӀарул мацӀ    av
  901. 7838    Avestan avesta  ae
  902. 7839    Aymara  aymar aru   ay
  903. 7840    Azerbaijani azərbaycan dili    az
  904. 7841    Bambara bamanankan  bm
  905. 7842    Bashkir башҡорт теле ba
  906. 7843    Basque  euskara, euskera    eu
  907. 7844    Belarusian  Беларуская    be
  908. 7845    Bengali বাংলা bn
  909. 7846    Bihari  भोजपुरी   bh
  910. 7847    Bislama Bislama bi
  911. 7848    Bosnian bosanski jezik  bs
  912. 7849    Breton  brezhoneg   br
  913. 7850    Bulgarian   български език bg
  914. 7851    Burmese ဗမာစာ my
  915. 7852    Catalan; Valencian  Català ca
  916. 7853    Chamorro    Chamoru ch
  917. 7854    Chechen нохчийн мотт ce
  918. 7855    Chichewa; Chewa; Nyanja chiCheŵa, chinyanja    ny
  919. 7856    Chinese 中文 (Zhōngwén), 汉语, 漢語 zh
  920. 7857    Chuvash чӑваш чӗлхи   cv
  921. 7858    Cornish Kernewek    kw
  922. 7859    Corsican    corsu, lingua corsa co
  923. 7860    Cree    ᓀᐦᐃᔭᐍᐏᐣ   cr
  924. 7861    Croatian    hrvatski    hr
  925. 7862    Czech   česky, čeština   cs
  926. 7863    Danish  dansk   da
  927. 7864    Divehi; Dhivehi; Maldivian; ދިވެހި    dv
  928. 7865    Dutch   Nederlands, Vlaams  nl
  929. 7866    English English en
  930. 7867    Esperanto   Esperanto   eo
  931. 7868    Estonian    eesti, eesti keel   et
  932. 7869    Ewe Eʋegbe ee
  933. 7870    Faroese føroyskt   fo
  934. 7871    Fijian  vosa Vakaviti   fj
  935. 7872    Finnish suomi, suomen kieli fi
  936. 7873    French  français, langue française    fr
  937. 7874    Fula; Fulah; Pulaar; Pular  Fulfulde, Pulaar, Pular ff
  938. 7875    Galician    Galego  gl
  939. 7876    Georgian    ქართული   ka
  940. 7877    German  Deutsch de
  941. 7878    Greek, Modern   Ελληνικά    el
  942. 7879    Guaraní    Avañeẽ   gn
  943. 7880    Gujarati    ગુજરાતી   gu
  944. 7881    Haitian; Haitian Creole Kreyòl ayisyen ht
  945. 7882    Hausa   Hausa, هَوُسَ ha
  946. 7883    Hebrew (modern) עברית  he
  947. 7884    Herero  Otjiherero  hz
  948. 7885    Hindi   हिन्दी, हिंदी hi
  949. 7886    Hiri Motu   Hiri Motu   ho
  950. 7887    Hungarian   Magyar  hu
  951. 7888    Interlingua Interlingua ia
  952. 7889    Indonesian  Bahasa Indonesia    id
  953. 7890    Interlingue Originally called Occidental; then Interlingue after WWII   ie
  954. 7891    Irish   Gaeilge ga
  955. 7892    Igbo    Asụsụ Igbo  ig
  956. 7893    Inupiaq Iñupiaq, Iñupiatun    ik
  957. 7894    Ido Ido io
  958. 7895    Icelandic   Íslenska   is
  959. 7896    Italian Italiano    it
  960. 7897    Inuktitut   ᐃᓄᒃᑎᑐᑦ  iu
  961. 7898    Japanese    日本語 (にほんご/にっぽんご)  ja
  962. 7899    Javanese    basa Jawa   jv
  963. 7900    Kalaallisut, Greenlandic    kalaallisut, kalaallit oqaasii  kl
  964. 7901    Kannada ಕನ್ನಡ kn
  965. 7902    Kanuri  Kanuri  kr
  966. 7903    Kashmiri    कश्मीरी, كشميري‎  ks
  967. 7904    Kazakh  Қазақ тілі kk
  968. 7905    Khmer   ភាសាខ្មែរ km
  969. 7906    Kikuyu, Gikuyu  Gĩkũyũ   ki
  970. 7907    Kinyarwanda Ikinyarwanda    rw
  971. 7908    Kirghiz, Kyrgyz кыргыз тили   ky
  972. 7909    Komi    коми кыв kv
  973. 7910    Kongo   KiKongo kg
  974. 7911    Korean  한국어 (韓國語), 조선말 (朝鮮語)    ko
  975. 7912    Kurdish Kurdî, كوردی‎   ku
  976. 7913    Kwanyama, Kuanyama  Kuanyama    kj
  977. 7914    Latin   latine, lingua latina   la
  978. 7915    Luxembourgish, Letzeburgesch    Lëtzebuergesch lb
  979. 7916    Luganda Luganda lg
  980. 7917    Limburgish, Limburgan, Limburger    Limburgs    li
  981. 7918    Lingala Lingála    ln
  982. 7919    Lao ພາສາລາວ   lo
  983. 7920    Lithuanian  lietuvių kalba lt
  984. 7921    Luba-Katanga        lu
  985. 7922    Latvian latviešu valoda    lv
  986. 7923    Manx    Gaelg, Gailck   gv
  987. 7924    Macedonian  македонски јазик mk
  988. 7925    Malagasy    Malagasy fiteny mg
  989. 7926    Malay   bahasa Melayu, بهاس ملايو‎   ms
  990. 7927    Malayalam   മലയാളം  ml
  991. 7928    Maltese Malti   mt
  992. 7929    Māori  te reo Māori   mi
  993. 7930    Marathi (Marāṭhī)   मराठी mr
  994. 7931    Marshallese Kajin M̧ajeļ  mh
  995. 7932    Mongolian   монгол    mn
  996. 7933    Nauru   Ekakairũ Naoero    na
  997. 7934    Navajo, Navaho  Diné bizaad, Dinékʼehǰí    nv
  998. 7935    Norwegian Bokmål   Norsk bokmål   nb
  999. 7936    North Ndebele   isiNdebele  nd
  1000. 7937    Nepali  नेपाली  ne
  1001. 7938    Ndonga  Owambo  ng
  1002. 7939    Norwegian Nynorsk   Norsk nynorsk   nn
  1003. 7940    Norwegian   Norsk   no
  1004. 7941    Nuosu   ꆈꌠ꒿ Nuosuhxop ii
  1005. 7942    South Ndebele   isiNdebele  nr
  1006. 7943    Occitan Occitan oc
  1007. 7944    Ojibwe, Ojibwa  ᐊᓂᔑᓈᐯᒧᐎᓐ    oj
  1008. 7945    Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic    ѩзыкъ словѣньскъ cu
  1009. 7946    Oromo   Afaan Oromoo    om
  1010. 7947    Oriya   ଓଡ଼ିଆ or
  1011. 7948    Ossetian, Ossetic   ирон æвзаг os
  1012. 7949    Panjabi, Punjabi    ਪੰਜਾਬੀ, پنجابی‎ pa
  1013. 7950    Pāli   पाऴि    pi
  1014. 7951    Persian فارسی  fa
  1015. 7952    Polish  polski  pl
  1016. 7953    Pashto, Pushto  پښتو    ps
  1017. 7954    Portuguese  Português  pt
  1018. 7955    Quechua Runa Simi, Kichwa   qu
  1019. 7956    Romansh rumantsch grischun  rm
  1020. 7957    Kirundi kiRundi rn
  1021. 7958    Romanian, Moldavian, Moldovan   română    ro
  1022. 7959    Russian русский язык ru
  1023. 7960    Sanskrit (Saṁskṛta) संस्कृतम् sa
  1024. 7961    Sardinian   sardu   sc
  1025. 7962    Sindhi  सिन्धी, سنڌي، سندھی‎    sd
  1026. 7963    Northern Sami   Davvisámegiella    se
  1027. 7964    Samoan  gagana faa Samoa    sm
  1028. 7965    Sango   yângâ tî sängö sg
  1029. 7966    Serbian српски језик sr
  1030. 7967    Scottish Gaelic; Gaelic Gàidhlig   gd
  1031. 7968    Shona   chiShona    sn
  1032. 7969    Sinhala, Sinhalese  සිංහල si
  1033. 7970    Slovak  slovenčina sk
  1034. 7971    Slovene slovenščina   sl
  1035. 7972    Somali  Soomaaliga, af Soomaali so
  1036. 7973    Southern Sotho  Sesotho st
  1037. 7974    Spanish; Castilian  español, castellano    es
  1038. 7975    Sundanese   Basa Sunda  su
  1039. 7976    Swahili Kiswahili   sw
  1040. 7977    Swati   SiSwati ss
  1041. 7978    Swedish svenska sv
  1042. 7979    Tamil   தமிழ் ta
  1043. 7980    Telugu  తెలుగు  te
  1044. 7981    Tajik   тоҷикӣ, toğikī, تاجیکی‎ tg
  1045. 7982    Thai    ไทย   th
  1046. 7983    Tigrinya    ትግርኛ    ti
  1047. 7984    Tibetan Standard, Tibetan, Central  བོད་ཡིག   bo
  1048. 7985    Turkmen Türkmen, Түркмен    tk
  1049. 7986    Tagalog Wikang Tagalog, ᜏᜒᜃᜅ᜔ ᜆᜄᜎᜓᜄ᜔  tl
  1050. 7987    Tswana  Setswana    tn
  1051. 7988    Tonga (Tonga Islands)   faka Tonga  to
  1052. 7989    Turkish Türkçe    tr
  1053. 7990    Tsonga  Xitsonga    ts
  1054. 7991    Tatar   татарча, tatarça, تاتارچا‎ tt
  1055. 7992    Twi Twi tw
  1056. 7993    Tahitian    Reo Tahiti  ty
  1057. 7994    Uighur, Uyghur  Uyƣurqə, ئۇيغۇرچە‎  ug
  1058. 7995    Ukrainian   українська    uk
  1059. 7996    Urdu    اردو    ur
  1060. 7997    Uzbek   zbek, Ўзбек, أۇزبېك‎   uz
  1061. 7998    Venda   Tshivenḓa ve
  1062. 7999    Vietnamese  Tiếng Việt  vi
  1063. 8000    Volapük    Volapük    vo
  1064. 8001    Walloon Walon   wa
  1065. 8002    Welsh   Cymraeg cy
  1066. 8003    Wolof   Wollof  wo
  1067. 8004    Western Frisian Frysk   fy
  1068. 8005    Xhosa   isiXhosa    xh
  1069. 8006    Yiddish ייִדיש    yi
  1070. 8007    Yoruba  Yorùbá    yo
  1071. 8008    Zhuang, Chuang  Saɯ cueŋƅ, Saw cuengh    za
  1072. \.
  1073.  
  1074.  
  1075. --
  1076. -- Name: languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1077. --
  1078.  
  1079. SELECT pg_catalog.setval('languages_id_seq', 8008, true);
  1080.  
  1081.  
  1082. --
  1083. -- Data for Name: professions; Type: TABLE DATA; Schema: public; Owner: agufranov
  1084. --
  1085.  
  1086. COPY professions (id, title) FROM stdin;
  1087. 157 firefighter
  1088. 158 advocate
  1089. 159 attorney at law
  1090. 160 teacher
  1091. 161 doctor
  1092. 162 agriculturist
  1093. 163 statistician
  1094. 164 programmer
  1095. 165 engineer
  1096. 166 judge
  1097. 167 architect
  1098. 168 writer
  1099. 169 economist
  1100. 170 accountant
  1101. 171 human resources
  1102. 172 chemist
  1103. 173 actor
  1104. 174 interpreter
  1105. 175 web developer
  1106. 176 biologist
  1107. 177 musician
  1108. 178 astronomer
  1109. 179 designer
  1110. 180 physicist
  1111. 181 librarian
  1112. 182 philosopher
  1113. 183 police officer
  1114. \.
  1115.  
  1116.  
  1117. --
  1118. -- Name: professions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1119. --
  1120.  
  1121. SELECT pg_catalog.setval('professions_id_seq', 183, true);
  1122.  
  1123.  
  1124. --
  1125. -- Data for Name: project_managers; Type: TABLE DATA; Schema: public; Owner: agufranov
  1126. --
  1127.  
  1128. COPY project_managers (id, name, email, address, client_id) FROM stdin;
  1129. 830 Lincoln Greenholt   paxton.thompson@kuhlman.io  Wernerview, 7314 Rudolph Drives 458
  1130. 831 Dr. Russell Fritsch ardith.witting@ritchiekuphal.co Maudietown, 8009 Riley Dam  458
  1131. 832 Guillermo Carter    unique@haley.org    Smithview, 2364 Heaney Freeway  458
  1132. 833 Leta Cole   mariane_simonis@feil.io West Waino, 633 Camren Extensions   458
  1133. 834 Godfrey Rath    deron_dietrich@langworth.info   Reesebury, 1728 Darwin Parkway  460
  1134. 835 Elinore Ferry I giovanni_runolfsdottir@funk.net Lake Warren, 8562 Morissette Extensions 461
  1135. 836 Jerad Kuhn  coy@koelpinheidenreich.co   Bradtkeburgh, 57101 Aleen Causeway  461
  1136. 837 Aisha Torp Jr.  claria_gutkowski@bruen.biz  New Herminio, 5266 Freda Island 461
  1137. 838 Ms. Esmeralda Walter    gayle@fritschking.io    Isadoreton, 22900 Mireille Summit   462
  1138. 839 Odell Ziemann   rosemarie_witting@wehner.name   Kirlinland, 21763 Konopelski Crossing   462
  1139. 840 Ethelyn Stehr   makenzie@mayert.org Port Marleneland, 16295 Gerald Run  462
  1140. 841 Effie Olson lon.bailey@bergnaumemard.org    New Winnifredtown, 4583 Mohr Canyon 464
  1141. 842 Sigrid Haley II jayme@dare.com  Baileestad, 65790 Broderick Rue 465
  1142. 843 Loraine Rolfson olaf@boyer.info East Aditya, 4173 Alexys Shore  465
  1143. 844 Mrs. Paula Anderson julie.erdman@sawayn.io  Watsicahaven, 1257 Ora Ports    466
  1144. 845 Gail Littel IV  jamil.stanton@swaniawskimedhurst.org    South Lorinehaven, 27001 Halvorson Key  466
  1145. 846 Dortha Weber IV alene.nikolaus@turcotterogahn.co    East Dianaberg, 5853 Destini Junctions  466
  1146. 847 Bertram Kertzmann PhD   ewald_brown@langosh.name    Jerelport, 161 Roob Mount   467
  1147. 848 Tristin Torp III    orlando.heller@dachpollich.com  Abbyfort, 5892 Fisher Roads 467
  1148. 849 Hilario Wintheiser  janea@hoppeschiller.net New Eliport, 1929 Kaitlin Hills 468
  1149. 850 Milo Bernhard   kaley_kling@lynch.co    Port Chauncey, 6147 Paul Islands    468
  1150. 851 Isaiah Schmitt  lennie@ritchie.co   Lilafort, 6462 Clotilde Square  470
  1151. 852 Florian Kris    skylar_dach@carroll.io  Sengerfurt, 458 Schroeder Squares   471
  1152. 853 Elliott Boyle   delilah.okeefe@turnermohr.org   Heathcotebury, 89237 Stroman Well   471
  1153. 854 Ara Fay ellsworth@lubowitz.org  West Destany, 8951 Hammes Spurs 471
  1154. 855 Noe Nolan PhD   aleandra@gutkowski.net  West Carletonville, 26642 Darby Parkway 471
  1155. 856 Myrtle Grady II twila@hayes.io  Langhaven, 7266 Leann Loop  472
  1156. 857 Jayden Bayer    kaylin@schinnerrath.com Hahnport, 5409 DuBuque Lock 472
  1157. 858 Julio Stoltenberg   neal@schultzlabadie.org Danport, 29944 Brian Spring 472
  1158. 859 Gene Rice III   arnoldo.balistreri@sengerschinner.co    Lake Edmond, 171 Satterfield Rue    472
  1159. 860 Deshaun Wunsch  remington@lueilwitzcronin.com   North Edgarstad, 68499 Zieme Stravenue  473
  1160. 861 Mrs. Brennan Blanda arvel@treutel.com   New Abbey, 64900 Chelsey Causeway   473
  1161. 862 Helena Luettgen DDS lupe@aufderharwalter.com    South Bertha, 66990 Thiel Manors    473
  1162. 863 Mr. Kaleigh Heaney  sasha@white.name    Watersbury, 867 Carroll Creek   473
  1163. 864 Obie Marquardt  morgan.steuber@yundt.org    New Jamisonland, 88584 Barrows Passage  474
  1164. 865 Ms. Gilbert Watsica mateo.reichert@wolff.net    Port Eladioborough, 4160 Roob Landing   474
  1165. 866 Ms. Verlie Brown    cullen@labadie.io   West Chethaven, 65404 Emmalee Squares   474
  1166. 867 Ms. Zane Gislason   oran@carrollbailey.com  West Guy, 7500 Virginie Course  476
  1167. 868 Dan Brekke III  clay_lockman@deckow.biz Joanyside, 49015 O'Keefe Drive  476
  1168. 869 Kailey Vandervort   kallie.lowe@mertzhuel.io    North Alexanne, 818 Shanahan Stream 476
  1169. 870 Miss Elva Hamill    nathen@baileydoyle.net  South Daphney, 7650 Zieme Orchard   476
  1170. 871 Shawn Kerluke   cole@macgyverbradtke.com    McLaughlinside, 82647 Pierce Haven  477
  1171. 872 Marquis Stokes PhD  ford@yundt.name South Rhett, 890 Tremblay Station   477
  1172. 873 Ollie Ondricka  devyn.kilback@legros.co Trevionmouth, 8407 Moses Junction   477
  1173. \.
  1174.  
  1175.  
  1176. --
  1177. -- Name: project_managers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1178. --
  1179.  
  1180. SELECT pg_catalog.SETVAL('project_managers_id_seq', 873, TRUE);
  1181.  
  1182.  
  1183. --
  1184. -- Data for Name: projects; Type: TABLE DATA; Schema: public; Owner: agufranov
  1185. --
  1186.  
  1187. COPY projects (id, NUMBER, project_id_client, words_count, budget_cents, STATUS, start_date, planned_end_date, actual_end_date, comments, client_id, project_manager_id, country_id, original_language_id, target_language_id, condition_id, speciality_id) FROM stdin;
  1188. 1703    2015-061    748-52-2672 37093   196000  1   2015-01-12 09:05:28.171014  2015-03-01 09:26:13 2015-11-08 23:09:36 \N  464 841 10211   7942    7827    81  81
  1189. 1643    2015-001    664-04-7052 8907    27000   2   2015-05-28 13:52:10.056941  2015-04-18 08:07:17 2015-07-14 10:50:45 \N  473 862 10354   7976    7901    82  82
  1190. 1644    2015-002    815-41-1895 7629    98000   1   2015-05-17 22:54:30.013466  2015-07-07 06:37:11 2015-10-13 05:23:59 \N  460 834 10295   7976    7855    82  82
  1191. 1645    2015-003    262-96-4676 27734   13000   1   2014-12-11 02:33:57.390363  2015-05-25 16:56:26 2015-02-16 02:35:21 \N  470 851 10309   7895    7971    82  81
  1192. 1646    2015-004    887-05-7160 35139   35000   2   2015-05-22 14:15:16.198981  2018-02-28 02:44:30 2015-09-11 15:48:49 Delectus quae quo tempora ea. Vitae eum voluptate. Eos ducimus sit sequi. Tempore odit quae pariatur repudiandae culpa voluptatem. Est beatae ad architecto incidunt aspernatur.    473 861 10439   7900    7951    82  82
  1193. 1647    2015-005    785-24-2714 34172   227000  1   2015-02-17 23:50:16.487015  2014-12-11 10:23:52 2015-05-28 18:24:54 Molestiae eius et voluptas. Quis laudantium inventore repudiandae iusto sint est asperiores. Omnis ut sed. Quaerat doloremque repudiandae libero.   458 830 10419   8007    7984    81  81
  1194. 1648    2015-006    348-09-0782 19409   95000   2   2015-03-02 04:52:15.492186  2018-03-10 09:32:15 2015-08-01 04:01:51 \N  465 842 10390   7910    7937    82  82
  1195. 1649    2015-007    261-47-2646 31368   127000  2   2015-08-28 16:09:43.906336  2015-09-26 00:23:16 2015-11-11 09:45:38 \N  460 834 10371   7877    7940    81  81
  1196. 1650    2015-008    206-26-5555 37561   279000  2   2015-02-05 02:20:56.964479  2015-11-15 22:38:43 2015-06-03 16:36:50 Temporibus optio voluptates iste quo. Reiciendis cum aut minima sed qui ut. Modi aut fuga earum occaecati. Velit consequatur aut atque et ratione.  462 838 10222   7983    7942    81  81
  1197. 1651    2015-009    311-77-5099 17463   190000  2   2015-04-18 02:23:02.964668  2018-08-25 10:28:57 2015-06-25 15:27:09 \N  475 \N  10407   7874    7860    82  81
  1198. 1652    2015-010    099-53-1195 16352   154000  0   2015-06-10 13:54:36.245592  2015-04-18 20:13:58 \N  \N  475 \N  10245   7975    7859    82  81
  1199. 1653    2015-011    075-99-0894 25336   73000   2   2015-02-08 17:49:26.37194   2015-05-23 12:01:43 2015-06-13 06:27:44 \N  475 \N  10252   7853    7983    82  82
  1200. 1654    2015-012    569-77-8682 7036    132000  1   2015-03-10 18:25:41.548756  2015-03-20 17:36:04 2015-08-19 17:17:17 Dolor autem culpa et quibusdam accusamus. Nihil aut ut at aliquam unde quo. Soluta sit est. 470 851 10380   7950    7873    82  82
  1201. 1655    2015-013    863-45-3723 39213   114000  1   2015-02-07 07:41:06.645546  2015-06-07 21:47:17 2015-10-02 12:54:47 \N  464 841 10224   7875    7837    82  82
  1202. 1656    2015-014    168-43-4453 28287   143000  0   2015-08-07 10:15:13.55195   2018-03-14 19:00:23 \N  Quia velit iusto odio aut rerum. Sed voluptas molestiae dolorem. Expedita magni et asperiores. Vero perspiciatis recusandae magni cum.  471 852 10313   7873    7843    82  81
  1203. 1657    2015-015    661-59-2332 31331   206000  1   2015-04-11 07:15:10.627313  2015-06-18 12:41:11 2015-11-17 16:31:50 \N  472 856 10448   7847    7994    81  82
  1204. 1658    2015-016    723-95-3537 10225   258000  0   2015-07-28 08:18:08.047307  2018-01-06 10:10:03 \N  \N  477 871 10444   7831    7873    82  81
  1205. 1659    2015-017    862-77-6786 15128   238000  2   2014-12-15 10:52:52.581566  2015-06-05 09:03:26 2014-12-24 20:03:39 \N  466 846 10295   8005    7827    82  81
  1206. 1660    2015-018    295-96-5408 6627    167000  1   2015-05-18 14:50:40.705316  2018-02-05 08:02:20 2015-07-31 23:13:37 Labore voluptatum est. Occaecati sit quisquam. Deserunt recusandae rem. Et et tempore molestiae quae. Nulla voluptates cupiditate ut expedita repellendus culpa dolores.    462 838 10350   7976    7876    82  82
  1207. 1661    2015-019    657-15-7411 28915   58000   2   2015-07-26 00:18:36.41428   2015-04-19 21:11:19 2015-11-29 01:47:21 \N  459 \N  10366   7986    7878    81  82
  1208. 1662    2015-020    848-44-4627 22576   35000   2   2015-06-07 06:43:01.821402  2015-03-09 21:13:16 2015-08-02 00:28:37 Unde recusandae labore sit porro ut hic rerum. Iusto laboriosam consequatur fugit ut quia fugiat dolores. Molestiae eum aspernatur quisquam rerum.  460 834 10339   7900    7921    81  82
  1209. 1663    2015-021    864-33-7464 25771   143000  2   2015-02-01 19:31:26.625109  2015-01-12 01:33:23 2015-04-23 05:48:59 \N  464 841 10269   7872    7948    81  81
  1210. 1664    2015-022    536-86-6693 26043   29000   2   2015-05-28 07:08:29.484822  2015-08-26 04:53:47 2015-09-24 13:38:19 \N  464 841 10429   7979    7901    82  82
  1211. 1665    2015-023    271-33-2515 18126   152000  2   2015-01-07 04:48:46.495351  2015-06-25 16:14:35 2015-07-21 10:05:22 Quo qui nihil necessitatibus quo ea est. IN iure reiciendis est corrupti ipsa. Similique doloremque minus. Quo neque itaque sint.   474 866 10359   7941    7964    81  82
  1212. 1666    2015-024    497-83-3253 42684   182000  0   2015-05-28 13:07:29.542087  2015-06-12 20:31:02 \N  \N  464 841 10401   7876    7921    82  81
  1213. 1667    2015-025    491-69-0529 15055   127000  2   2015-01-02 20:05:03.857955  2018-11-22 22:25:41 2015-06-27 19:53:53 Omnis maiores voluptatem ullam sequi. Et amet impedit iusto est. Architecto quisquam accusamus maiores praesentium. 461 837 10353   7882    7978    82  82
  1214. 1668    2015-026    835-22-0823 24837   262000  1   2015-02-18 16:29:53.147062  2015-11-11 01:07:01 2015-03-09 18:44:15 Dolor ipsam amet ea. Sit quod accusamus. Laborum est non accusantium. Esse rerum tempore facere inventore et. Impedit magni optio rerum iste illum architecto suscipit. 459 \N  10366   7863    8006    81  81
  1215. 1669    2015-027    831-55-0755 25666   209000  0   2015-02-20 22:06:20.464556  2015-11-21 02:10:24 \N  \N  465 842 10407   7992    7904    81  82
  1216. 1670    2015-028    162-52-0253 9926    220000  2   2015-06-27 16:46:08.806656  2018-01-02 14:48:36 2015-09-02 17:44:23 IN non aspernatur saepe nihil fuga fugit mollitia. Soluta illum fuga consequatur veritatis eius. Et placeat ut corporis. Similique sed ea cupiditate numquam velit et quaerat.  474 864 10395   7829    7903    82  81
  1217. 1671    2015-029    036-33-1723 31348   54000   1   2015-02-01 01:17:35.871739  2018-09-22 08:47:24 2015-03-31 20:20:39 \N  466 846 10332   7892    7963    81  81
  1218. 1672    2015-030    614-98-3922 10327   180000  1   2014-12-23 06:02:57.543248  2015-07-18 18:27:01 2015-03-07 15:41:02 Aut ullam eos atque reiciendis consequatur. Nostrum officiis quo harum autem expedita sint. Rerum aperiam doloribus nisi. Cupiditate vero enim illum adipisci veritatis officiis rem. Vel et repudiandae ut.    474 864 10288   8002    7870    82  82
  1219. 1673    2015-031    394-04-2203 8703    173000  1   2015-05-14 18:44:51.216313  2018-12-02 04:53:04 2015-10-22 06:26:52 \N  468 849 10343   7900    7944    82  81
  1220. 1674    2015-032    496-92-9206 39453   289000  1   2015-03-07 22:26:53.813489  2015-10-04 11:38:04 2015-10-03 07:47:52 Ad aut velit debitis rerum aut modi. Qui sit sint vel nobis culpa voluptas iste. Architecto reprehenderit aperiam minus commodi aliquid et. 459 \N  10378   7830    7843    82  82
  1221. 1675    2015-033    444-15-2536 33450   93000   2   2015-02-20 17:06:42.848438  2018-02-11 05:11:18 2015-06-06 20:42:13 Omnis ab officiis corporis. Ducimus voluptatem soluta sequi expedita cupiditate qui. Fugiat IN at sit magnam eum quae. Ratione maiores quam nulla.  458 831 10370   7900    7911    81  81
  1222. 1676    2015-034    103-10-0490 42934   31000   1   2015-02-28 17:55:29.784699  2015-03-13 13:52:01 2015-04-11 14:24:37 \N  468 849 10358   7883    7865    81  81
  1223. 1677    2015-035    601-16-7396 3207    131000  2   2015-01-23 03:16:35.792397  2015-11-09 14:32:26 2015-08-23 14:05:08 \N  461 837 10242   8006    7967    82  81
  1224. 1678    2015-036    524-86-8495 38731   199000  0   2015-07-15 16:14:28.734666  2015-04-24 08:21:22 \N  \N  475 \N  10430   7963    7880    82  82
  1225. 1679    2015-037    777-20-0055 37734   203000  2   2015-02-20 16:30:21.934619  2018-01-02 15:36:34 2015-07-12 21:10:50 Aspernatur doloribus facere placeat facilis eum magni illum. Eos velit voluptates. Sapiente totam et officiis quo et.   468 849 10404   7966    7953    81  81
  1226. 1680    2015-038    858-73-9251 17780   152000  2   2015-07-24 09:07:54.823456  2018-07-25 00:57:32 2015-11-19 21:51:23 \N  462 839 10215   7963    7994    82  82
  1227. 1681    2015-039    703-85-2684 18139   204000  1   2015-03-09 16:26:06.900012  2018-10-11 06:46:33 2015-04-28 09:09:01 Sit rem aut facilis quia accusamus. Dicta iusto suscipit mollitia magnam. Maxime velit rerum laudantium voluptas blanditiis. Saepe voluptatem rem vel consequatur doloremque.   466 846 10234   8008    7944    82  81
  1228. 1682    2015-040    336-05-4915 39533   31000   1   2015-04-12 19:56:45.206785  2018-03-25 17:26:39 2015-09-14 09:10:11 Placeat fuga corporis omnis quasi qui rem dolorem. Harum veritatis tempore et error voluptatum. Repellendus enim modi porro.    462 839 10286   7916    7884    81  81
  1229. 1704    2015-062    432-45-5732 7705    230000  0   2015-08-09 04:23:14.052347  2015-01-25 23:58:51 \N  Dolor possimus eum quod IN excepturi magnam ipsa. Nulla ut dolor expedita ullam quas IN ratione. Dolorem amet animi modi consequatur.   464 841 10322   7931    7875    82  81
  1230. 1705    2015-063    657-39-6736 6065    173000  2   2015-06-23 15:24:37.207595  2018-12-05 01:36:28 2015-09-30 04:43:58 \N  477 871 10347   7992    7831    82  81
  1231. 1706    2015-064    263-10-2607 10669   143000  2   2014-12-19 20:53:55.267585  2018-04-04 12:27:17 2015-03-23 16:23:29 \N  474 866 10235   7918    7898    81  82
  1232. 1707    2015-065    854-42-7662 35084   140000  1   2014-12-15 23:36:56.873191  2014-12-07 15:10:47 2015-03-31 06:21:13 Quo dicta ab non reiciendis saepe et. Sunt excepturi sint dolorem. Qui reiciendis ducimus animi molestiae voluptatum rerum. 461 836 10254   7943    7869    82  82
  1233. 1708    2015-066    758-68-1723 16016   115000  1   2015-01-19 01:55:57.358036  2015-11-19 02:24:58 2015-08-14 19:13:07 \N  475 \N  10447   7921    7852    82  82
  1234. 1709    2015-067    506-83-9718 3143    50000   1   2015-02-18 06:18:37.82873   2018-09-15 13:16:38 2015-09-21 06:55:57 Molestiae id non vel voluptate. Quia atque sunt quas odit. Quia suscipit atque perspiciatis.    477 873 10380   7867    7922    81  82
  1235. 1710    2015-068    731-69-0527 17521   241000  1   2015-04-08 10:44:59.192017  2015-05-14 06:40:01 2015-09-17 07:47:40 Exercitationem corrupti iusto velit voluptas. Et qui voluptatem omnis nulla suscipit recusandae. Rem qui sit reiciendis labore. Consequatur id iure dolorem ut non. 469 \N  10403   7875    7979    82  82
  1236. 1711    2015-069    009-26-8226 5646    70000   0   2015-03-06 19:15:37.20664   2015-11-14 15:14:09 \N  Sit id numquam odio nam deserunt autem. Ad non alias. Dignissimos harum quod suscipit repellendus enim nesciunt. Molestiae odio eveniet quasi nobis ut. 474 866 10236   7837    7860    81  82
  1237. 1712    2015-070    780-97-7886 20324   223000  0   2015-03-07 15:20:46.068283  2015-07-12 23:12:29 \N  \N  458 830 10322   7934    7868    81  81
  1238. 1713    2015-071    837-73-7244 26852   130000  2   2015-02-10 16:38:22.03247   2018-05-09 12:52:47 2015-02-26 21:27:40 Illum est consequatur nihil. Et velit cumque eum. Nihil eaque et explicabo. Labore molestiae a id. Est dolores cumque porro accusamus unde dolor.   473 863 10353   7944    7914    82  82
  1239. 1714    2015-072    872-22-7237 34231   129000  0   2015-04-18 04:13:10.737035  2015-08-20 03:27:28 \N  \N  466 844 10211   7902    7932    81  81
  1240. 1715    2015-073    652-77-9145 18900   108000  1   2015-01-22 16:24:43.537153  2018-10-02 17:23:02 2015-03-20 07:23:16 Quo quo aut nam distinctio. Fugiat ut itaque aut provident et dicta libero. Tenetur fugiat dolore ut asperiores aut architecto. Sit voluptas assumenda aut voluptate nulla. Aut deserunt id eos vero tempora facilis vitae. 475 \N  10341   7846    7977    81  81
  1241. 1716    2015-074    762-06-6396 36279   52000   1   2015-06-09 12:35:20.201351  2015-05-11 11:41:13 2015-07-13 22:14:13 Rerum natus quis sit est. Nulla est vitae. Ipsam soluta incidunt et praesentium cumque. 466 845 10397   7830    7934    82  82
  1242. 1717    2015-075    771-55-7038 9438    215000  0   2015-03-29 19:34:10.990524  2018-11-09 23:56:55 \N  Eligendi ipsum tempore incidunt aliquid hic et. Consequatur enim et dolor autem veritatis. Aut natus consequuntur. Cumque amet veniam quod. Ipsum nam quibusdam ab ut.  463 \N  10362   7845    7973    82  81
  1243. 1718    2015-076    869-95-5518 40381   304000  2   2015-01-09 14:35:30.675737  2018-06-26 00:28:31 2015-11-19 07:34:51 \N  475 \N  10279   7870    7943    81  81
  1244. 1719    2015-077    172-11-0376 30590   38000   1   2015-04-07 16:46:40.936386  2015-02-10 16:35:35 2015-10-06 18:50:35 \N  458 832 10446   7911    7973    81  81
  1245. 1720    2015-078    010-81-8548 36051   217000  1   2015-09-04 00:58:01.748704  2018-04-18 00:30:43 2015-09-23 07:41:21 IN nihil repellat incidunt consequatur voluptatibus est quae. Ut odit dicta recusandae sit natus. Atque quo sit possimus alias inventore. Maiores perspiciatis temporibus non ut quia vitae et. 459 \N  10337   7883    7902    82  82
  1246. 1721    2015-079    300-27-5875 27694   148000  1   2015-06-01 22:49:01.073705  2018-09-25 23:20:40 2015-10-28 15:05:28 \N  468 849 10251   8006    8002    82  82
  1247. 1722    2015-080    363-27-1974 20244   182000  2   2015-01-27 10:22:58.322813  2015-04-17 04:13:46 2015-04-17 02:03:21 \N  466 844 10396   7918    7941    82  81
  1248. 1723    2015-081    344-55-8152 24005   272000  2   2015-04-04 18:28:08.425631  2015-04-23 23:32:33 2015-06-19 16:39:14 \N  476 869 10258   7981    7913    82  81
  1249. 1724    2015-082    456-03-5779 40017   189000  2   2015-08-05 00:49:30.144184  2018-02-05 13:04:29 2015-10-31 06:01:24 \N  470 851 10341   7882    7895    81  81
  1250. 1725    2015-083    701-51-5587 7182    300000  1   2015-03-09 23:42:11.504129  2015-08-31 23:35:08 2015-04-06 01:10:58 \N  458 830 10350   7940    7877    81  82
  1251. 1726    2015-084    517-70-8617 15924   225000  1   2015-03-01 02:20:24.63036   2015-06-25 13:49:06 2015-08-29 06:06:50 Et sint sit earum dolorum. Rerum sit sequi commodi. Similique architecto et dignissimos error sint iste. Qui placeat ut cupiditate eveniet quis. Dolorem delectus non recusandae cum.   465 843 10235   7975    7851    82  82
  1252. 1727    2015-085    797-97-1609 35969   18000   1   2015-02-26 23:54:15.634566  2015-05-22 15:23:47 2015-06-03 13:45:49 \N  465 843 10369   7918    7877    81  82
  1253. 1728    2015-086    649-03-1504 26257   174000  1   2015-06-30 02:59:54.791165  2018-02-09 23:12:31 2015-12-04 22:06:19 \N  460 834 10247   7984    7842    81  81
  1254. 1729    2015-087    682-01-4608 7713    295000  1   2015-04-15 14:44:28.288179  2018-01-01 17:44:49 2015-09-11 23:47:35 Dolore laborum pariatur nisi consequatur tempora vitae commodi. Ea sed aut debitis sed. Nisi illo porro rerum odit ea ut ut. Rerum enim qui quod.   472 859 10217   7868    7960    81  81
  1255. 1730    2015-088    668-17-0755 30391   171000  2   2015-04-22 09:47:06.045295  2015-03-09 20:43:30 2015-07-29 06:24:53 Dolore architecto impedit at voluptatem. Architecto aut quos. Quia tempora officiis accusamus consectetur maiores soluta dolores. Labore natus ipsum aspernatur reiciendis nulla non fuga.  477 871 10446   7938    8006    81  82
  1256. 1731    2015-089    152-28-5011 11501   231000  2   2015-05-20 13:24:40.090881  2018-07-29 04:15:07 2015-05-28 20:15:08 \N  458 832 10242   7954    7945    82  81
  1257. 1732    2015-090    638-60-1644 16405   245000  1   2015-01-21 20:05:54.154637  2018-11-14 09:31:09 2015-01-21 06:51:58 Ad eum amet dolorem quam nihil expedita cumque. Qui aut sed ut explicabo velit. Possimus quisquam maxime voluptatum. Id reiciendis ipsa harum tempora. Accusantium quaerat dolorum dolor quos molestiae atque impedit.  471 854 10403   7887    7997    82  82
  1258. 1733    2015-091    200-19-4976 7090    209000  1   2015-03-28 22:00:56.087798  2015-06-09 20:13:04 2015-07-15 00:29:41 Voluptatem natus quod sit maxime. Omnis saepe ipsa nisi ab. Soluta impedit voluptatem iure maiores consequatur accusamus. Dicta aut alias minima magni. 460 834 10207   7972    8001    82  82
  1259. 1734    2015-092    256-29-6415 31329   302000  2   2015-08-10 19:41:44.022468  2015-11-09 19:22:27 2015-10-25 20:29:21 \N  472 859 10363   7920    7932    82  82
  1260. 1735    2015-093    371-82-5360 23339   53000   2   2015-03-18 20:07:26.846962  2015-03-20 05:27:47 2015-11-10 19:53:55 \N  462 840 10307   7910    7934    81  81
  1261. 1736    2015-094    774-84-3876 34732   227000  1   2015-06-16 08:01:37.809133  2018-09-26 03:24:38 2015-07-03 11:31:03 \N  477 872 10427   7912    8001    81  81
  1262. 1737    2015-095    115-11-4498 4824    189000  1   2015-03-19 02:43:02.980779  2018-01-16 20:24:29 2015-05-23 05:28:26 \N  466 845 10380   7959    7833    82  81
  1263. 1738    2015-096    885-86-1596 37995   305000  1   2015-02-26 04:20:58.622507  2015-06-07 20:13:30 2015-10-10 15:48:39 Quia illum eius recusandae itaque fugit. Quis ab IN. Quam perferendis sint qui animi.   472 859 10381   7924    7892    82  81
  1264. 1739    2015-097    827-59-2623 13684   103000  2   2015-03-25 20:14:41.306034  2015-06-13 12:07:26 2015-04-25 22:31:11 \N  470 851 10359   7991    7985    81  81
  1265. 1740    2015-098    242-46-0752 6241    92000   1   2015-01-05 07:43:28.980581  2015-06-22 20:52:10 2015-01-31 05:15:42 \N  464 841 10320   7924    7978    81  81
  1266. 1741    2015-099    195-85-5789 10155   234000  1   2015-04-19 15:36:16.926483  2015-05-05 05:36:30 2015-06-06 15:14:00 Laboriosam vel eius vitae itaque mollitia voluptatem sit. Ut quo doloremque et. Dolor labore blanditiis perferendis qui. Ratione consequatur debitis molestiae quia. Quasi neque commodi sint voluptatem at dolores.    466 845 10300   7971    7936    82  81
  1267. 1742    2015-100    337-02-5737 27853   91000   1   2015-03-27 11:19:30.770814  2018-02-15 07:51:19 2015-06-08 00:13:13 \N  468 850 10229   7836    7983    82  81
  1268. 1743    2015-101    449-62-3509 14675   38000   0   2015-08-06 08:16:29.961467  2015-02-03 07:21:08 \N  Dolores quia mollitia. Deserunt nam facere aut IN neque fuga. Consectetur voluptatem dolor excepturi odio molestias doloremque. Alias dolor qui et est blanditiis voluptates fuga.  477 871 10232   7988    7988    81  81
  1269. 1744    2015-102    748-18-4990 4625    104000  2   2015-05-29 10:04:19.271404  2018-04-11 13:08:55 2015-11-05 03:30:58 Porro asperiores aut commodi ipsa tenetur provident maiores. Vel error illum qui voluptas at dolore soluta. Ut dolores non temporibus. Consequatur distinctio sit est reiciendis nesciunt velit. Qui error eos minus repellat beatae.   467 847 10384   7931    7878    81  82
  1270. 1745    2015-103    311-41-9964 10586   231000  1   2015-04-14 13:21:23.542116  2015-02-08 18:00:30 2015-05-06 08:08:15 At assumenda consequatur ut laborum. Earum quod vel necessitatibus fuga eos corrupti voluptatem. Dicta vitae veritatis. Non pariatur laudantium IN ab quia perferendis numquam. 471 853 10370   7904    7890    81  81
  1271. 1746    2015-104    681-89-2029 35619   250000  0   2015-04-06 09:58:04.749818  2015-08-26 05:07:56 \N  Quia quo aut aut sed repudiandae delectus eos. Est odio rem sequi praesentium omnis amet. Delectus iusto et dicta expedita nihil illo ut. Quam laudantium impedit aliquid voluptatem velit accusantium. Optio quos ad vel.  464 841 10347   7943    7993    81  82
  1272. 1747    2015-105    101-45-2242 21682   305000  2   2015-02-22 14:23:40.68007   2015-07-31 06:29:12 2015-07-11 22:18:33 Voluptas deserunt quas sunt laborum voluptatibus. Vel cum mollitia. Velit minima odit non earum. Dicta vitae debitis.   468 849 10421   7841    7836    82  81
  1273. 1748    2015-106    436-38-7943 8311    72000   2   2015-08-22 05:56:25.484872  2018-08-29 00:57:24 2015-08-26 13:59:49 Cupiditate qui voluptatibus est atque dolores. Ut ipsa non delectus sunt dolor. Culpa ut cumque sequi dicta. Error est neque voluptatem. Hic molestias quidem.  475 \N  10238   7975    7967    81  81
  1274. 1749    2015-107    545-81-4973 40893   227000  2   2015-01-22 21:24:28.099727  2015-11-20 22:27:40 2015-02-26 18:27:50 Incidunt praesentium aut rerum odit eaque esse debitis. Cupiditate atque sed vitae aspernatur sed. Sed quis deserunt at fugit facere voluptates quae.   476 869 10291   8004    7897    81  81
  1275. 1750    2015-108    039-20-5547 21591   130000  0   2015-01-09 15:26:14.270445  2015-01-14 14:45:31 \N  \N  473 861 10346   7923    7842    82  81
  1276. 1751    2015-109    144-83-5114 6726    101000  2   2015-05-02 14:44:19.094487  2015-07-22 14:27:43 2015-07-12 08:14:34 Ipsam maiores hic quidem ullam ea. Vitae qui tenetur. Eos id assumenda corporis vero provident. 464 841 10239   7855    7932    82  82
  1277. 1752    2015-110    695-12-4321 9038    75000   0   2014-12-25 04:38:33.483214  2018-08-31 15:17:12 \N  \N  469 \N  10249   7951    7923    81  82
  1278. 1753    2015-111    059-48-7083 3938    74000   1   2015-02-19 12:35:50.03214   2015-04-27 23:33:15 2015-04-11 01:02:46 Voluptates et qui. Non odio et qui distinctio consequatur. Molestiae voluptate corrupti est commodi similique quas est. 473 863 10369   7839    7877    81  82
  1279. 1754    2015-112    726-93-1263 21726   162000  1   2015-05-27 01:56:26.190088  2018-04-24 06:11:10 2015-08-15 13:43:05 Labore neque assumenda ullam ad voluptatem. Voluptas possimus officiis quidem cumque sit sequi sed. Ut fugit ut debitis.    461 836 10212   7835    7966    82  82
  1280. 1755    2015-113    376-46-5324 42452   136000  2   2014-12-11 13:26:35.226562  2015-08-31 11:58:46 2015-07-20 04:51:41 \N  460 834 10287   7907    7841    81  82
  1281. 1756    2015-114    148-71-2079 18192   249000  0   2015-03-10 14:55:13.565013  2018-07-16 11:47:44 \N  Blanditiis aut accusantium et suscipit molestiae nostrum sit. Aperiam accusamus id. Nihil temporibus amet dicta beatae omnis vero et. Qui dolorem labore et voluptates. 466 844 10400   7833    7979    82  82
  1282. 1757    2015-115    729-24-8933 40457   296000  1   2014-12-30 04:26:27.917211  2018-09-29 05:00:38 2015-01-01 02:18:49 \N  474 864 10382   7842    7840    82  82
  1283. 1758    2015-116    771-24-7519 10746   186000  1   2015-07-19 12:06:38.454793  2018-09-30 04:02:21 2015-11-29 05:10:30 Id suscipit enim quas ipsam. Ipsam qui sed enim magnam saepe possimus optio. Voluptatum facere velit est laudantium praesentium voluptates. 475 \N  10379   8005    7849    82  82
  1284. 1759    2015-117    525-69-8556 3256    237000  2   2015-04-08 12:37:00.323492  2014-12-08 13:14:44 2015-05-02 14:04:28 Quod quia et eum nostrum aut laudantium. Quo veritatis mollitia enim voluptas. Est culpa minus porro.   464 841 10358   7853    7886    81  81
  1285. 1760    2015-118    569-46-4037 10103   149000  2   2015-01-25 21:54:51.486883  2015-04-23 11:17:23 2015-04-13 15:26:16 Laboriosam rem id incidunt sequi consequuntur cum recusandae. Delectus nemo ea numquam iusto vel laborum alias. Eius harum quia vero quasi autem. Cumque officia aut eveniet. Voluptas accusamus ipsa excepturi ducimus doloribus eum est.  465 843 10219   7892    7910    81  81
  1286. 1761    2015-119    862-33-5178 8098    273000  2   2015-08-22 09:51:55.362818  2015-04-22 23:03:46 2015-10-16 11:58:49 \N  458 830 10234   7989    7882    82  81
  1287. 1762    2015-120    653-33-5871 17078   251000  2   2014-12-22 20:53:18.098337  2015-05-30 17:14:19 2015-03-20 09:12:41 Ut qui voluptatem. Quasi ab ullam. Porro qui dolorum id ducimus aperiam dolores libero. Voluptas voluptatem deleniti. Illo quibusdam et dolor.  466 846 10388   7961    7917    82  81
  1288. 1683    2015-041    031-74-5695 34363   263000  1   2015-06-28 17:42:47.471046  2015-09-13 22:14:59 2015-11-09 21:43:23 Itaque est eveniet. Quis nemo quaerat nesciunt. Molestiae maiores aut voluptas. Esse quasi tenetur et porro consectetur voluptatum. Quia ipsam nisi et. 461 835 10239   7916    7922    81  82
  1289. 1684    2015-042    861-83-2265 39738   277000  1   2015-07-22 16:29:48.246577  2018-10-17 18:43:05 2015-08-08 02:10:16 Nemo voluptatem aliquid cum porro et et. Quis quos quod velit aut vel excepturi. Iste blanditiis qui eum fuga non cupiditate eveniet. Et dolorem soluta.    473 861 10249   7855    7932    82  82
  1290. 1685    2015-043    108-27-6172 27256   84000   1   2015-07-23 08:10:09.67103   2015-06-21 02:21:33 2015-11-12 04:14:11 Beatae voluptas et. Qui quibusdam alias pariatur ut laudantium ea culpa. Quia quos blanditiis distinctio.   465 843 10363   7983    7936    82  82
  1291. 1686    2015-044    829-24-0297 31756   257000  0   2015-03-24 07:29:49.036499  2015-09-07 08:45:53 \N  Esse quos quis expedita exercitationem. Quis veritatis facere adipisci. Mollitia architecto voluptatum. 471 855 10349   7922    7907    82  82
  1292. 1687    2015-045    060-83-5520 26024   33000   2   2015-01-21 22:10:58.576497  2015-11-08 11:13:02 2015-05-28 05:55:44 \N  468 850 10250   7865    7980    81  82
  1293. 1688    2015-046    683-43-1642 18829   255000  1   2015-06-25 05:11:24.201476  2015-09-04 15:20:26 2015-10-15 07:21:32 \N  468 850 10238   7994    7960    82  81
  1294. 1689    2015-047    368-85-9745 24312   112000  1   2015-02-20 14:43:50.007209  2015-06-27 03:05:41 2015-03-17 07:49:14 \N  471 854 10323   7963    7843    82  82
  1295. 1690    2015-048    885-01-4114 39507   146000  1   2015-08-18 15:33:57.700509  2015-04-15 08:40:27 2015-10-20 17:03:35 Non incidunt a eum non voluptatem. Vero enim et molestias repellat rem quia. Expedita consectetur sed dignissimos sit optio. Sapiente consectetur qui libero dolore et provident eum.   458 832 10224   7948    7959    82  82
  1296. 1691    2015-049    247-71-7879 13192   23000   1   2015-09-02 16:58:54.172567  2017-12-30 11:25:07 2015-11-25 23:00:47 Praesentium vel adipisci ipsam laboriosam eum. Saepe pariatur consequatur voluptas delectus molestiae. Velit aut voluptates omnis consequatur esse autem. Repellat eveniet accusantium officiis facere at.  463 \N  10285   7916    7934    81  82
  1297. 1692    2015-050    849-87-6211 38070   281000  2   2015-03-20 14:35:27.881872  2015-06-20 12:50:33 2015-12-03 20:16:56 \N  459 \N  10443   7876    8008    81  82
  1298. 1693    2015-051    558-29-6010 6337    36000   2   2015-05-21 17:37:48.356879  2015-08-03 18:03:50 2015-06-05 16:51:13 \N  460 834 10407   7969    7913    82  81
  1299. 1694    2015-052    757-90-4514 17612   297000  2   2015-08-01 20:57:17.885445  2018-05-06 08:44:00 2015-09-20 19:25:03 \N  472 856 10363   7827    7946    81  81
  1300. 1695    2015-053    124-67-4511 21371   309000  2   2015-06-20 09:21:16.105139  2018-05-07 21:07:36 2015-09-22 05:42:19 \N  469 \N  10300   8006    7996    81  82
  1301. 1696    2015-054    664-09-0136 19675   151000  1   2015-06-26 08:55:57.483887  2015-06-16 11:44:02 2015-09-26 15:24:41 \N  466 845 10345   8002    7930    82  82
  1302. 1697    2015-055    631-96-7253 31970   89000   2   2014-12-30 20:04:38.945141  2015-03-17 16:25:20 2015-07-06 14:49:32 Fuga voluptatem rerum quam eligendi quia. Illum ex voluptas debitis ipsa voluptatum aliquid. Et assumenda et alias enim voluptas velit nulla.   470 851 10259   7928    7894    81  82
  1303. 1698    2015-056    626-24-6965 12661   226000  0   2015-08-12 10:16:07.876364  2015-04-02 12:40:07 \N  Quod incidunt mollitia aliquid qui velit nihil sint. Debitis accusamus libero nostrum quisquam. Aperiam doloremque cum commodi dolorem. 460 834 10291   7936    7844    81  81
  1304. 1699    2015-057    053-94-5394 4613    179000  2   2015-04-15 09:42:24.696778  2015-06-14 21:11:51 2015-09-23 22:04:25 \N  470 851 10404   7848    7971    81  82
  1305. 1700    2015-058    293-05-8218 38006   152000  2   2015-04-24 10:12:13.921347  2017-12-19 22:24:30 2015-10-28 12:47:53 \N  463 \N  10238   7958    7930    81  82
  1306. 1701    2015-059    157-14-5334 17374   111000  2   2015-01-06 13:30:58.214726  2018-01-30 21:55:44 2015-09-07 07:34:00 \N  469 \N  10231   7912    7978    81  81
  1307. 1702    2015-060    574-47-0065 6555    147000  0   2015-06-07 04:18:12.515361  2018-11-12 08:40:10 \N  Autem mollitia quisquam sed. Sed non id omnis culpa. Doloremque odio consequatur nihil aut magni eos.   469 \N  10264   7994    7960    82  81
  1308. \.
  1309.  
  1310.  
  1311. --
  1312. -- Name: projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1313. --
  1314.  
  1315. SELECT pg_catalog.SETVAL('projects_id_seq', 1762, TRUE);
  1316.  
  1317.  
  1318. --
  1319. -- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: agufranov
  1320. --
  1321.  
  1322. COPY schema_migrations (version) FROM stdin;
  1323. 1
  1324. 2
  1325. 3
  1326. 4
  1327. 5
  1328. 6
  1329. 7
  1330. 8
  1331. 9
  1332. 10
  1333. 11
  1334. 12
  1335. 13
  1336. 14
  1337. 15
  1338. 16
  1339. \.
  1340.  
  1341.  
  1342. --
  1343. -- Data for Name: specialities; Type: TABLE DATA; Schema: public; Owner: agufranov
  1344. --
  1345.  
  1346. COPY specialities (id, title) FROM stdin;
  1347. 81  Speciality 1
  1348. 82  Speciality 2
  1349. \.
  1350.  
  1351.  
  1352. --
  1353. -- Name: specialities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1354. --
  1355.  
  1356. SELECT pg_catalog.SETVAL('specialities_id_seq', 82, TRUE);
  1357.  
  1358.  
  1359. --
  1360. -- Data for Name: vendor_countries; Type: TABLE DATA; Schema: public; Owner: agufranov
  1361. --
  1362.  
  1363. COPY vendor_countries (id, vendor_id, country_id) FROM stdin;
  1364. 614 646 10298
  1365. 615 646 10260
  1366. 616 650 10228
  1367. 617 652 10239
  1368. 618 652 10389
  1369. 619 653 10225
  1370. 620 655 10282
  1371. 621 655 10424
  1372. 622 658 10244
  1373. 623 662 10296
  1374. 624 662 10373
  1375. 625 663 10329
  1376. 626 663 10364
  1377. 627 664 10328
  1378. 628 664 10248
  1379. 629 665 10415
  1380. 630 666 10255
  1381. 631 666 10298
  1382. 632 667 10316
  1383. 633 667 10300
  1384. 634 669 10379
  1385. 635 670 10333
  1386. 636 670 10227
  1387. 637 671 10241
  1388. 638 671 10294
  1389. 639 673 10397
  1390. 640 673 10400
  1391. 641 674 10425
  1392. 642 675 10287
  1393. 643 677 10400
  1394. 644 677 10220
  1395. 645 678 10269
  1396. 646 679 10414
  1397. 647 679 10437
  1398. 648 681 10318
  1399. 649 682 10419
  1400. 650 683 10241
  1401. 651 683 10245
  1402. 652 684 10284
  1403. 653 684 10247
  1404. 654 685 10407
  1405. 655 687 10367
  1406. 656 689 10439
  1407. 657 690 10284
  1408. 658 690 10213
  1409. 659 693 10350
  1410. 660 695 10208
  1411. 661 696 10449
  1412. 662 697 10351
  1413. 663 697 10444
  1414. 664 698 10435
  1415. 665 700 10375
  1416. 666 700 10330
  1417. 667 702 10372
  1418. 668 702 10258
  1419. 669 703 10254
  1420. 670 704 10404
  1421. 671 706 10256
  1422. 672 708 10348
  1423. 673 709 10339
  1424. 674 709 10268
  1425. 675 710 10336
  1426. 676 710 10286
  1427. 677 711 10306
  1428. 678 715 10362
  1429. 679 715 10269
  1430. 680 717 10254
  1431. 681 717 10209
  1432. 682 718 10340
  1433. 683 718 10364
  1434. 684 719 10401
  1435. 685 719 10443
  1436. 686 722 10411
  1437. 687 725 10437
  1438. 688 725 10318
  1439. \.
  1440.  
  1441.  
  1442. --
  1443. -- Name: vendor_countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1444. --
  1445.  
  1446. SELECT pg_catalog.SETVAL('vendor_countries_id_seq', 688, TRUE);
  1447.  
  1448.  
  1449. --
  1450. -- Data for Name: vendor_languages; Type: TABLE DATA; Schema: public; Owner: agufranov
  1451. --
  1452.  
  1453. COPY vendor_languages (id, vendor_id, language_id, proficiency) FROM stdin;
  1454. 795 646 7952    3
  1455. 796 646 7991    3
  1456. 797 647 7998    2
  1457. 798 648 7983    2
  1458. 799 648 7853    1
  1459. 800 649 7894    3
  1460. 801 650 7933    3
  1461. 802 650 7860    2
  1462. 803 651 7870    1
  1463. 804 651 7853    0
  1464. 805 652 7883    1
  1465. 806 653 7976    2
  1466. 807 653 8005    0
  1467. 808 654 7985    1
  1468. 809 654 7963    1
  1469. 810 655 7900    0
  1470. 811 655 7926    0
  1471. 812 656 7883    3
  1472. 813 656 7827    1
  1473. 814 657 7948    1
  1474. 815 657 7838    3
  1475. 816 658 7960    3
  1476. 817 659 7899    1
  1477. 818 659 7872    3
  1478. 819 660 7839    3
  1479. 820 660 7928    1
  1480. 821 661 7988    2
  1481. 822 662 7876    0
  1482. 823 663 7981    3
  1483. 824 664 7879    3
  1484. 825 664 7891    1
  1485. 826 665 7931    2
  1486. 827 666 7870    1
  1487. 828 666 7951    1
  1488. 829 667 7878    3
  1489. 830 668 7989    0
  1490. 831 668 7948    2
  1491. 832 669 7986    3
  1492. 833 670 7944    2
  1493. 834 671 8000    1
  1494. 835 671 7986    0
  1495. 836 672 7978    2
  1496. 837 673 8007    0
  1497. 838 674 7988    1
  1498. 839 675 7927    3
  1499. 840 676 7961    0
  1500. 841 676 7864    1
  1501. 842 677 7982    2
  1502. 843 678 7846    1
  1503. 844 678 7990    0
  1504. 845 679 7968    1
  1505. 846 679 8005    2
  1506. 847 680 7933    2
  1507. 848 681 8003    2
  1508. 849 682 7963    3
  1509. 850 682 7882    1
  1510. 851 683 7873    2
  1511. 852 683 7921    3
  1512. 853 684 7838    2
  1513. 854 685 7914    2
  1514. 855 686 7872    1
  1515. 856 686 7981    1
  1516. 857 687 7926    1
  1517. 858 688 8007    0
  1518. 859 688 7971    3
  1519. 860 689 7862    3
  1520. 861 689 7905    3
  1521. 862 690 7841    2
  1522. 863 690 7938    1
  1523. 864 691 7897    2
  1524. 865 692 7926    0
  1525. 866 692 7992    1
  1526. 867 693 7973    2
  1527. 868 693 7940    2
  1528. 869 694 7857    0
  1529. 870 694 7983    3
  1530. 871 695 8002    1
  1531. 872 695 7908    0
  1532. 873 696 7915    3
  1533. 874 697 7989    1
  1534. 875 698 7903    0
  1535. 876 699 7865    1
  1536. 877 700 7887    3
  1537. 878 700 7888    1
  1538. 879 701 7850    1
  1539. 880 702 7966    3
  1540. 881 703 7863    3
  1541. 882 703 7904    0
  1542. 883 704 7834    0
  1543. 884 704 7920    3
  1544. 885 705 7881    0
  1545. 886 706 7904    0
  1546. 887 706 7870    0
  1547. 888 707 7929    1
  1548. 889 708 7994    1
  1549. 890 709 7957    3
  1550. 891 709 8002    3
  1551. 892 710 8000    3
  1552. 893 711 7881    0
  1553. 894 712 7859    3
  1554. 895 713 7834    2
  1555. 896 714 7874    3
  1556. 897 714 7985    2
  1557. 898 715 7950    2
  1558. 899 715 7890    3
  1559. 900 716 7988    0
  1560. 901 717 7973    3
  1561. 902 717 7837    0
  1562. 903 718 7898    0
  1563. 904 718 7999    0
  1564. 905 719 7866    1
  1565. 906 720 7948    2
  1566. 907 721 7916    0
  1567. 908 721 7871    0
  1568. 909 722 7830    1
  1569. 910 723 7899    2
  1570. 911 723 7882    3
  1571. 912 724 7948    3
  1572. 913 724 7837    3
  1573. 914 725 7863    3
  1574. \.
  1575.  
  1576.  
  1577. --
  1578. -- Name: vendor_languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1579. --
  1580.  
  1581. SELECT pg_catalog.SETVAL('vendor_languages_id_seq', 914, TRUE);
  1582.  
  1583.  
  1584. --
  1585. -- Data for Name: vendors; Type: TABLE DATA; Schema: public; Owner: agufranov
  1586. --
  1587.  
  1588. COPY vendors (id, name, mapi_code, tasks_flags, rate_hour_cents, rate_interview_cents, rate_word_cents, comments, profession_id, condition_id, speciality_id) FROM stdin;
  1589. 646 Dangelo Kerluke V   S6297300E   106 1700    1200    1700    Fixie pbr&b bushwick cardigan.  166 82  82
  1590. 647 Brenda Robel DDS    S7072745E   37  1000    1700    2000    Pbr&b cronut paleo beard raw denim. 157 82  81
  1591. 648 Kameron Maggio  S5884142J   138 2300    2400    1200    Viral readymade drinking yuccie intelligentsia goth vegan messenger bag health. 175 81  81
  1592. 649 Mr. Emmett Herman   S5350099D   116 1400    1500    1700    Cliche craft beer mlkshk pitchfork bespoke sustainable loko.    165 82  82
  1593. 650 Seth Reinger    S7482653I   31  2100    700 1600    Listicle beard literally bicycle rights chartreuse chia.    157 81  82
  1594. 651 Maximilian Gulgowski    S9120705B   83  500 1200    2200    Put a bird ON it cold-pressed single-origin coffee schlitz shabby chic cardigan chillwave.  168 81  81
  1595. 652 Otha Renner Jr. S6749550J   18  700 1900    1300    Banh mi vice brunch neutra selvage synth master +1. 180 82  82
  1596. 653 Kyra Beahan II  S5657575H   107 600 1700    2400    Portland tacos bitters truffaut distillery viral listicle BEFORE they sold OUT pug. 163 81  82
  1597. 654 Abigale Robel MD    S7500265C   237 1900    1400    2300    You probably haven't heard of them ramps waistcoat put a bird on it fingerstache next level shabby chic hoodie. 175 81  81
  1598. 655 Trevion Krajcik S8034402C   39  900 1600    1200    Fingerstache hella plaid post-ironic raw denim migas pop-up.    169 81  81
  1599. 656 Josefina Rice   S8633860B   187 600 1900    800 Asymmetrical vhs gastropub hoodie cornhole shabby chic hella.   168 81  82
  1600. 657 Kayla Bogan S7410831H   241 500 1000    1500    Blue bottle vice iphone pitchfork.  167 81  82
  1601. 658 Maximillian Ebert   S6210883E   7   2200    1500    2200    Tilde chartreuse chicharrones authentic green juice kickstarter.    178 81  82
  1602. 659 Mr. Brenna Anderson S9772528D   249 2300    500 2400    Craft beer whatever asymmetrical narwhal yr tumblr keytar tattooed diy. 179 82  81
  1603. 660 Alanna Jaskolski    S8694615G   40  800 2000    1200    Small batch pug ethical health. 158 81  82
  1604. 661 Neal Larkin MD  S7083368I   161 1600    1100    2000    Salvia kogi typewriter venmo vinegar tumblr.    172 82  81
  1605. 662 Raleigh Lockman S5626843Z   111 500 800 800 Tacos fixie park ugh asymmetrical mixtape lumbersexual. 167 82  82
  1606. 663 Mozelle Graham  S6330001B   54  1000    1700    1500    Park readymade tilde ugh thundercats kitsch hammock austin. 162 82  81
  1607. 664 Lazaro Welch    S9703019G   175 600 900 1300    Hella 3 wolf moon tilde cray gastropub hammock meh vinyl.   176 82  82
  1608. 665 Ms. Marcelina Simonis   S9167781D   211 1200    1800    1400    Celiac intelligentsia wolf brooklyn 8-bit.  157 82  82
  1609. 666 Samson Russel   S8255245F   228 500 800 1000    Slow-carb bicycle rights swag semiotics photo booth poutine truffaut.   175 82  81
  1610. 667 Gregg Gusikowski    S5095426I   210 1200    900 2200    Meggings biodiesel salvia taxidermy.    181 82  81
  1611. 668 Providenci Lang S7717878C   195 1300    2300    2400    Intelligentsia kale chips green juice ugh.  159 81  81
  1612. 669 Sabina Jast S9252647Z   155 2300    1000    1100    Gastropub xoxo hashtag carry pork belly seitan blue bottle. 169 81  81
  1613. 670 Gideon Boyer    S9707683I   49  500 2400    2300    Retro fixie chartreuse cardigan 90's organic celiac.    169 81  81
  1614. 671 Amanda Bahringer Jr.    S8653223I   16  1800    1300    1600    Hammock cardigan jean shorts aesthetic pinterest kitsch bushwick cliche.    173 81  82
  1615. 672 Tyreek Tillman Jr.  S5461945F   179 2200    2400    1300    Helvetica bushwick 8-bit goth.  182 82  82
  1616. 673 Neil Stracke    S8948117A   50  2400    1600    1800    Schlitz echo migas actually sartorial banh mi pbr&b.    173 81  81
  1617. 674 Hayley Christiansen S5800002G   28  1800    2300    1600    Art party thundercats locavore mustache jean shorts.    174 81  81
  1618. 675 Polly Vandervort    S5307265H   218 500 1500    1200    Ugh pug semiotics viral everyday.   169 81  81
  1619. 676 Nick Funk   S9122974I   195 1700    1300    2400    Celiac squid lomo synth xoxo.   171 81  82
  1620. 677 Kirstin Labadie S6063107G   115 1100    1700    2300    Godard NEXT level plaid park tumblr carry.  161 82  82
  1621. 678 Lelah Leannon   S6405292F   137 2200    2300    1800    Organic intelligentsia master kogi put a bird ON it tattooed small batch biodiesel vinegar. 176 81  81
  1622. 679 Alexandria Price    S8796305E   212 700 2100    500 Flannel lumbersexual austin intelligentsia heirloom microdosing chia.   173 82  81
  1623. 680 Heber Bernier   S5516050C   120 1300    1300    2400    Sustainable farm-to-TABLE portland street.  174 81  82
  1624. 681 Mason Heller III    S5785146E   47  1300    2100    900 Polaroid post-ironic asymmetrical bushwick meggings messenger bag trust fund.   159 81  81
  1625. 682 Eriberto McDermott II   S5359434D   199 600 2400    2300    Cliche waistcoat chicharrones kombucha cleanse butcher. 176 81  81
  1626. 683 Meta Quitzon IV S7048573G   230 2200    2200    2000    Sustainable irony pickled thundercats plaid kinfolk.    172 82  81
  1627. 684 Haskell Zieme   S6955233A   107 900 500 1400    Williamsburg bitters carry farm-to-TABLE twee hashtag typewriter thundercats.   170 81  81
  1628. 685 Lawrence Bernhard MD    S8453543E   237 1500    1100    2000    Food truck synth portland tacos 3 wolf moon.    177 81  81
  1629. 686 Justus Goodwin  S8008109Z   78  1000    1000    1900    Aesthetic tofu master celiac fanny pack.    164 81  81
  1630. 687 Willard Wiza    S8564947G   185 1400    800 2100    Shabby chic tilde dreamcatcher narwhal waistcoat wes anderson normcore gluten-free austin.  180 82  82
  1631. 688 Fannie Collins  S8690002E   230 1200    1200    600 Ethical mlkshk farm-to-TABLE pug intelligentsia.    176 82  81
  1632. 689 Lyla Balistreri II  S8937616E   58  1900    1900    1200    Plaid xoxo ennui cliche pour-OVER paleo synth.  177 82  82
  1633. 690 Eldora Witting  S8199332G   55  600 500 900 Pork belly umami direct trade readymade.    173 81  81
  1634. 691 Laverna Conn    S8487853G   4   1100    1600    1100    Ugh normcore dreamcatcher artisan crucifix offal pickled umami mlkshk.  166 81  81
  1635. 692 Marlin Gleichner DDS    S6316802E   224 600 600 2400    Organic schlitz ugh master forage gluten-free you probably haven't heard of them.   161 81  81
  1636. 693 Trey Klein I    S7075790G   155 1800    2000    2200    Pinterest semiotics sartorial selfies small batch.  164 82  81
  1637. 694 Kristy Kihn S9650551E   212 1600    1300    2100    Banh mi art party pinterest deep v venmo kinfolk artisan.   182 81  82
  1638. 695 Emelia Miller   S6343666F   212 2300    1900    1300    Williamsburg portland neutra microdosing +1.    160 81  82
  1639. 696 Lacy Koepp  S8355745A   28  2200    700 1100    Pinterest cronut next level bitters.    170 82  82
  1640. 697 Vern Bradtke    S6666398A   52  700 2000    2200    Microdosing pickled vinegar kale chips knausgaard yr godard food truck. 159 81  81
  1641. 698 Lennie Tillman I    S6647283C   197 1100    1600    2300    Xoxo intelligentsia goth letterpress disrupt pour-over cornhole dreamcatcher drinking.  168 82  82
  1642. 699 Jaylin Stokes I S5892552G   43  1400    1600    500 Swag plaid vegan etsy.  166 82  82
  1643. 700 Webster Daugherty   S9051950F   36  2300    1600    1300    Ramps put a bird on it irony ugh mixtape.   166 82  81
  1644. 701 Aurelia Reinger S7650110F   236 600 1100    500 Cred offal cardigan cronut. 178 81  81
  1645. 702 Una Schmitt S9609395J   62  1000    700 600 Cornhole drinking keffiyeh hoodie.  158 82  82
  1646. 703 Jaiden Block    S8356230G   172 900 700 1600    Cray fanny pack 3 wolf moon deep v park aesthetic wes anderson. 168 82  81
  1647. 704 Willa Huel  S7339972F   129 1200    1500    1200    Tilde banh mi swag fap authentic.   157 81  81
  1648. 705 Alva Christiansen   S6991332F   238 1500    2100    1000    Roof hammock goth asymmetrical meditation chia plaid tattooed.  171 82  82
  1649. 706 Nia Schimmel    S5477919D   234 600 2300    1300    Brunch master try-hard bitters portland mumblecore photo booth mixtape authentic.   178 81  82
  1650. 707 Jessyca Langosh S6688397C   95  2200    1700    1400    Kogi sustainable thundercats street 3 wolf moon health crucifix farm-to-table.  175 81  82
  1651. 708 Tessie Bashirian    S5475392F   36  700 1700    900 Mustache keytar franzen gentrify disrupt microdosing shabby chic tofu.  182 81  82
  1652. 709 Saige Reynolds  S9682364I   127 700 2300    1000    Chicharrones tattooed swag squid roof tumblr street organic lo-fi.  174 81  82
  1653. 710 Waino Rodriguez S5816476C   5   1700    1500    1600    Shabby chic tumblr migas marfa hella neutra forage trust fund.  165 82  82
  1654. 711 Fredrick Bashirian  S7440587H   131 1300    2000    1200    Goth everyday disrupt pour-over food truck trust fund paleo meh swag.   165 82  81
  1655. 712 Fredrick Huel   S7440229A   106 2200    1600    1900    Brooklyn loko synth authentic.  171 81  81
  1656. 713 Jaylan Grant    S7664012B   147 1500    2400    1900    Quinoa cliche helvetica diy banjo cred letterpress fap carry.   159 82  82
  1657. 714 Mara Rath   S5545245H   34  2400    1900    800 Disrupt offal actually heirloom jean shorts meggings intelligentsia sriracha.   177 82  82
  1658. 715 Quinn Abernathy S5996116J   3   600 600 700 Blue bottle pour-over quinoa chillwave meh. 161 82  81
  1659. 716 Miss Emmitt Upton   S7508806Z   28  1300    1300    500 Tousled gastropub small batch next level cleanse drinking bitters paleo.    174 82  82
  1660. 717 Miss Tito Green S5336741J   3   1100    1000    900 Craft beer meh put a bird on it art party.  166 82  82
  1661. 718 Dr. Sterling Mosciski   S6469566E   96  1300    1500    1700    Williamsburg cliche selvage pickled pop-up park pitchfork synth.    176 81  82
  1662. 719 Candido Pollich S8144140E   216 1400    1800    1100    Ethical asymmetrical vinegar before they sold out.  178 81  82
  1663. 720 Ms. Jordan Miller   S6424038B   156 500 700 2400    Goth mlkshk roof skateboard.    172 82  82
  1664. 721 Belle Grimes    S8973019H   45  500 1300    1200    Viral narwhal echo church-key sartorial.    171 81  82
  1665. 722 Shanel Heller   S7555172Z   248 1300    1100    700 Synth meh mlkshk hashtag skateboard fap tattooed kinfolk.   164 82  81
  1666. 723 Vinnie Adams    S8595269B   248 2400    800 1400    Sustainable butcher hella slow-carb.    175 82  82
  1667. 724 Jo Oberbrunner  S7813389I   218 1400    900 2200    Plaid skateboard artisan fap offal tilde.   173 82  81
  1668. 725 Duncan Bradtke  S6684034D   254 2200    2000    1400    Mustache pickled cronut neutra readymade wayfarers narwhal venmo meditation.    170 81  81
  1669. \.
  1670.  
  1671.  
  1672. --
  1673. -- Name: vendors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: agufranov
  1674. --
  1675.  
  1676. SELECT pg_catalog.setval('vendors_id_seq', 725, true);
  1677.  
  1678.  
  1679. --
  1680. -- Name: assignments_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1681. --
  1682.  
  1683. ALTER TABLE ONLY assignments
  1684.    ADD CONSTRAINT assignments_pkey PRIMARY KEY (id);
  1685.  
  1686.  
  1687. --
  1688. -- Name: clients_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1689. --
  1690.  
  1691. ALTER TABLE ONLY clients
  1692.    ADD CONSTRAINT clients_pkey PRIMARY KEY (id);
  1693.  
  1694.  
  1695. --
  1696. -- Name: conditions_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1697. --
  1698.  
  1699. ALTER TABLE ONLY conditions
  1700.    ADD CONSTRAINT conditions_pkey PRIMARY KEY (id);
  1701.  
  1702.  
  1703. --
  1704. -- Name: countries_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1705. --
  1706.  
  1707. ALTER TABLE ONLY countries
  1708.    ADD CONSTRAINT countries_pkey PRIMARY KEY (id);
  1709.  
  1710.  
  1711. --
  1712. -- Name: languages_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1713. --
  1714.  
  1715. ALTER TABLE ONLY languages
  1716.    ADD CONSTRAINT languages_pkey PRIMARY KEY (id);
  1717.  
  1718.  
  1719. --
  1720. -- Name: professions_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1721. --
  1722.  
  1723. ALTER TABLE ONLY professions
  1724.    ADD CONSTRAINT professions_pkey PRIMARY KEY (id);
  1725.  
  1726.  
  1727. --
  1728. -- Name: project_managers_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1729. --
  1730.  
  1731. ALTER TABLE ONLY project_managers
  1732.    ADD CONSTRAINT project_managers_pkey PRIMARY KEY (id);
  1733.  
  1734.  
  1735. --
  1736. -- Name: projects_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1737. --
  1738.  
  1739. ALTER TABLE ONLY projects
  1740.    ADD CONSTRAINT projects_pkey PRIMARY KEY (id);
  1741.  
  1742.  
  1743. --
  1744. -- Name: specialities_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1745. --
  1746.  
  1747. ALTER TABLE ONLY specialities
  1748.    ADD CONSTRAINT specialities_pkey PRIMARY KEY (id);
  1749.  
  1750.  
  1751. --
  1752. -- Name: vendor_countries_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1753. --
  1754.  
  1755. ALTER TABLE ONLY vendor_countries
  1756.    ADD CONSTRAINT vendor_countries_pkey PRIMARY KEY (id);
  1757.  
  1758.  
  1759. --
  1760. -- Name: vendor_languages_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1761. --
  1762.  
  1763. ALTER TABLE ONLY vendor_languages
  1764.    ADD CONSTRAINT vendor_languages_pkey PRIMARY KEY (id);
  1765.  
  1766.  
  1767. --
  1768. -- Name: vendors_pkey; Type: CONSTRAINT; Schema: public; Owner: agufranov; Tablespace:
  1769. --
  1770.  
  1771. ALTER TABLE ONLY vendors
  1772.    ADD CONSTRAINT vendors_pkey PRIMARY KEY (id);
  1773.  
  1774.  
  1775. --
  1776. -- Name: index_assignments_on_vendor_id_and_project_id; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1777. --
  1778.  
  1779. CREATE UNIQUE INDEX index_assignments_on_vendor_id_and_project_id ON assignments USING btree (vendor_id, project_id);
  1780.  
  1781.  
  1782. --
  1783. -- Name: index_conditions_on_name; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1784. --
  1785.  
  1786. CREATE UNIQUE INDEX index_conditions_on_name ON conditions USING btree (name);
  1787.  
  1788.  
  1789. --
  1790. -- Name: index_countries_on_name; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1791. --
  1792.  
  1793. CREATE UNIQUE INDEX index_countries_on_name ON countries USING btree (name);
  1794.  
  1795.  
  1796. --
  1797. -- Name: index_languages_on_name; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1798. --
  1799.  
  1800. CREATE UNIQUE INDEX index_languages_on_name ON languages USING btree (name);
  1801.  
  1802.  
  1803. --
  1804. -- Name: index_professions_on_title; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1805. --
  1806.  
  1807. CREATE UNIQUE INDEX index_professions_on_title ON professions USING btree (title);
  1808.  
  1809.  
  1810. --
  1811. -- Name: index_projects_on_number; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1812. --
  1813.  
  1814. CREATE UNIQUE INDEX index_projects_on_number ON projects USING btree (number);
  1815.  
  1816.  
  1817. --
  1818. -- Name: index_specialities_on_title; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1819. --
  1820.  
  1821. CREATE UNIQUE INDEX index_specialities_on_title ON specialities USING btree (title);
  1822.  
  1823.  
  1824. --
  1825. -- Name: index_vendor_countries_on_vendor_id_and_country_id; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1826. --
  1827.  
  1828. CREATE UNIQUE INDEX index_vendor_countries_on_vendor_id_and_country_id ON vendor_countries USING btree (vendor_id, country_id);
  1829.  
  1830.  
  1831. --
  1832. -- Name: index_vendor_languages_on_vendor_id_and_language_id; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1833. --
  1834.  
  1835. CREATE UNIQUE INDEX index_vendor_languages_on_vendor_id_and_language_id ON vendor_languages USING btree (vendor_id, language_id);
  1836.  
  1837.  
  1838. --
  1839. -- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: agufranov; Tablespace:
  1840. --
  1841.  
  1842. CREATE UNIQUE INDEX unique_schema_migrations ON schema_migrations USING btree (version);
  1843.  
  1844.  
  1845. --
  1846. -- Name: fk_rails_102d49228a; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1847. --
  1848.  
  1849. ALTER TABLE ONLY vendor_languages
  1850.    ADD CONSTRAINT fk_rails_102d49228a FOREIGN KEY (vendor_id) REFERENCES vendors(id);
  1851.  
  1852.  
  1853. --
  1854. -- Name: fk_rails_156fe9f60c; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1855. --
  1856.  
  1857. ALTER TABLE ONLY projects
  1858.    ADD CONSTRAINT fk_rails_156fe9f60c FOREIGN KEY (speciality_id) REFERENCES specialities(id);
  1859.  
  1860.  
  1861. --
  1862. -- Name: fk_rails_24a132526a; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1863. --
  1864.  
  1865. ALTER TABLE ONLY projects
  1866.    ADD CONSTRAINT fk_rails_24a132526a FOREIGN KEY (country_id) REFERENCES countries(id);
  1867.  
  1868.  
  1869. --
  1870. -- Name: fk_rails_3549273dc2; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1871. --
  1872.  
  1873. ALTER TABLE ONLY projects
  1874.    ADD CONSTRAINT fk_rails_3549273dc2 FOREIGN KEY (project_manager_id) REFERENCES project_managers(id);
  1875.  
  1876.  
  1877. --
  1878. -- Name: fk_rails_4d3d2c839c; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1879. --
  1880.  
  1881. ALTER TABLE ONLY assignments
  1882.    ADD CONSTRAINT fk_rails_4d3d2c839c FOREIGN KEY (project_id) REFERENCES projects(id);
  1883.  
  1884.  
  1885. --
  1886. -- Name: fk_rails_6a4bb456c6; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1887. --
  1888.  
  1889. ALTER TABLE ONLY projects
  1890.    ADD CONSTRAINT fk_rails_6a4bb456c6 FOREIGN KEY (condition_id) REFERENCES conditions(id);
  1891.  
  1892.  
  1893. --
  1894. -- Name: fk_rails_74246e9b3a; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1895. --
  1896.  
  1897. ALTER TABLE ONLY vendors
  1898.    ADD CONSTRAINT fk_rails_74246e9b3a FOREIGN KEY (profession_id) REFERENCES professions(id);
  1899.  
  1900.  
  1901. --
  1902. -- Name: fk_rails_8d9657cec3; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1903. --
  1904.  
  1905. ALTER TABLE ONLY projects
  1906.    ADD CONSTRAINT fk_rails_8d9657cec3 FOREIGN KEY (client_id) REFERENCES clients(id);
  1907.  
  1908.  
  1909. --
  1910. -- Name: fk_rails_a0697f438d; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1911. --
  1912.  
  1913. ALTER TABLE ONLY vendors
  1914.    ADD CONSTRAINT fk_rails_a0697f438d FOREIGN KEY (speciality_id) REFERENCES specialities(id);
  1915.  
  1916.  
  1917. --
  1918. -- Name: fk_rails_b48dd4d0f7; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1919. --
  1920.  
  1921. ALTER TABLE ONLY clients
  1922.    ADD CONSTRAINT fk_rails_b48dd4d0f7 FOREIGN KEY (country_id) REFERENCES countries(id);
  1923.  
  1924.  
  1925. --
  1926. -- Name: fk_rails_ba30d1a3e1; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1927. --
  1928.  
  1929. ALTER TABLE ONLY project_managers
  1930.    ADD CONSTRAINT fk_rails_ba30d1a3e1 FOREIGN KEY (client_id) REFERENCES clients(id);
  1931.  
  1932.  
  1933. --
  1934. -- Name: fk_rails_bc6c1c3a37; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1935. --
  1936.  
  1937. ALTER TABLE ONLY vendors
  1938.    ADD CONSTRAINT fk_rails_bc6c1c3a37 FOREIGN KEY (condition_id) REFERENCES conditions(id);
  1939.  
  1940.  
  1941. --
  1942. -- Name: fk_rails_c3863b55f1; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1943. --
  1944.  
  1945. ALTER TABLE ONLY vendor_countries
  1946.    ADD CONSTRAINT fk_rails_c3863b55f1 FOREIGN KEY (country_id) REFERENCES countries(id);
  1947.  
  1948.  
  1949. --
  1950. -- Name: fk_rails_cfaed64ff3; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1951. --
  1952.  
  1953. ALTER TABLE ONLY vendor_countries
  1954.    ADD CONSTRAINT fk_rails_cfaed64ff3 FOREIGN KEY (vendor_id) REFERENCES vendors(id);
  1955.  
  1956.  
  1957. --
  1958. -- Name: fk_rails_ecf30ce61e; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1959. --
  1960.  
  1961. ALTER TABLE ONLY vendor_languages
  1962.    ADD CONSTRAINT fk_rails_ecf30ce61e FOREIGN KEY (language_id) REFERENCES languages(id);
  1963.  
  1964.  
  1965. --
  1966. -- Name: fk_rails_ef42a526ae; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1967. --
  1968.  
  1969. ALTER TABLE ONLY projects
  1970.    ADD CONSTRAINT fk_rails_ef42a526ae FOREIGN KEY (original_language_id) REFERENCES languages(id);
  1971.  
  1972.  
  1973. --
  1974. -- Name: fk_rails_f351cdedca; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1975. --
  1976.  
  1977. ALTER TABLE ONLY projects
  1978.    ADD CONSTRAINT fk_rails_f351cdedca FOREIGN KEY (target_language_id) REFERENCES languages(id);
  1979.  
  1980.  
  1981. --
  1982. -- Name: fk_rails_f6f2a82126; Type: FK CONSTRAINT; Schema: public; Owner: agufranov
  1983. --
  1984.  
  1985. ALTER TABLE ONLY assignments
  1986.    ADD CONSTRAINT fk_rails_f6f2a82126 FOREIGN KEY (vendor_id) REFERENCES vendors(id);
  1987.  
  1988.  
  1989. --
  1990. -- Name: public; Type: ACL; Schema: -; Owner: postgres
  1991. --
  1992.  
  1993. REVOKE ALL ON SCHEMA public FROM PUBLIC;
  1994. REVOKE ALL ON SCHEMA public FROM postgres;
  1995. GRANT ALL ON SCHEMA public TO postgres;
  1996. GRANT ALL ON SCHEMA public TO PUBLIC;
  1997.  
  1998.  
  1999. --
  2000. -- PostgreSQL database dump complete
  2001. --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement