railway_stations


Description

鉄道駅テーブル

Columns

Column Type Size Nulls Auto Default Children Parents Comments
id bigserial 19 nextval('railway_stations_id_seq'::regclass)
code varchar 6 null

鉄道駅コード

name varchar 64 null

鉄道駅名称

address_code varchar 11 null
addresses.code railway_stations_address_code_fkey R

住所コード

latitude float8 17,17 null

緯度 (世界測地系の10進数表記)

longitude float8 17,17 null

経度 (世界測地系の10進数表記)

created_at timestamp 29,6 CURRENT_TIMESTAMP
updated_at timestamp 29,6 CURRENT_TIMESTAMP

Indexes

Constraint Name Type Sort Column(s)
railway_stations_pkey Primary key Asc id
idx_railway_stations_address_code Performance Asc address_code
idx_railway_stations_code Must be unique Asc code
idx_railway_stations_name Performance Asc name

Relationships