create table zip_codes (
  zip varchar(16) not null,
  city varchar(255) not null,
  state-abbreviation varchar(2) not null,
  county varchar(255) not null,
  latitude numeric not null,
  longitude numeric not null,
  primary key(zip)
);
