-- Migration 008: Add date of birth + profile picture to customers (customer app)
-- Run this once on your existing database via phpMyAdmin or the mysql CLI.

ALTER TABLE customers
    ADD COLUMN date_of_birth DATE NULL AFTER address,
    ADD COLUMN profile_pic_path VARCHAR(255) NULL AFTER date_of_birth;
