Slide 4
Slide 4 text
©2019 Wantedly, Inc.
ࠓѻ͏ςʔϒϧͷεΩʔϚ
Table "jobs"
Column | Type | Collation | Nullable | Default
-------------+------------+-----------+----------+---------------------------------
id | bigint | | not null | nextval('jobs_id_seq'::regclass)
company_id | integer | | |
Indexes:
"jobs_pkey" PRIMARY KEY, btree (id)
"index_jobs_on_company_id" btree (company_id)
Table "companies"
Column | Type | Collation | Nullable | Default
-------------+----------------------+-----------+----------+--------------------------------
id | bigint | | not null | nextval('jobs_id_seq'::regclass)
country | character varying(2) | | not null | 'JP'::character varying
Indexes:
"companies_pkey" PRIMARY KEY, btree (id)
"index_companies_on_country" btree (country)