create table occupations
(
  id          int auto_increment
    primary key,
  shop_id     int          null,
  title       varchar(200) null,
  description varchar(500) null,
  property    text         null,
  created_at  timestamp    null,
  updated_at  timestamp    null
);
