create table customer_subscriptions
(
  id          int auto_increment
    primary key,
  shop_id     int          null,
  customer_id int          null,
  start_date  timestamp    null,
  end_date    timestamp    null,
  note        varchar(255) null,
  property    text         null,
  status      tinyint(1)   null,
  created_by  int          null,
  created_at  timestamp    null,
  updated_at  timestamp    null
);
