-- Migration 010: Track customer app "last active" time for Online Now count
-- Run this once on your existing database via phpMyAdmin or the mysql CLI.

ALTER TABLE customers
    ADD COLUMN last_active_at DATETIME NULL AFTER profile_pic_path;
