"# Railbow configuration\n# https://github.com/amberpixels/railbow\n#\n# Config layers (each overrides the previous):\n# 1. Gem defaults (built-in)\n# 2. Global: ~/.config/railbow/config.yml\n# 3. Project: .railbow.yml (commit to git)\n# 4. Local: .railbow.local.yml (gitignored, personal overrides)\n#\n# Every key can also be overridden via RBW_* environment variables.\n\n# Time window for migrations to display (e.g. 30d, 2mo, 1y, all)\nsince: \"70d\"\n\n# Never show fewer than this many migrations, however old they are.\n# The window above is a soft limit: a database with five migrations shows\n# all five rather than reporting an empty period. 0 disables the floor.\nsince_min: 10\n\n# Sort order: file (by filename/version) or date (by timestamp)\n# sort: \"file\"\n\n# Git integration (comma-separated compound value):\n# author - add Author column (same as author:all)\n# author:me - highlight your own migrations\n# author:all - show all authors\n# diff - tag migrations by git origin branch\n# base:<branch> - base branch for diff (default: auto-detected)\n# mask:auto - auto-extract ticket id from branch name\n# mask:<re> - custom regex to extract branch label, e.g. mask:(WS-[^/]+)/\ngit: \"author:all,diff,mask:auto\"\n\n# Author display format - preset or custom pattern (FF L, FFF LL, etc.):\n# initials (J D), short (Jo D), first_name (John), last_name (Doe),\n# full_name (John Doe), full_name_short (John D.)\nauthor_format: \"short\"\n\n# View mode (comma-separated): calendar, tables\nview: \"calendar,tables\"\n\n# Calendar options (comma-separated), all require view: calendar.\n# Leave empty (\"\") for month separators only, with no week markers.\n# wticks - week tick marks on the date column\n# wdividers - a separator row per ISO week\n# counts - append \"\u00B7 N migrations\" to separator rows (per section)\n# label:<fmt> - strftime for month separators (default: %b %Y W%V)\n# wlabel:<fmt> - strftime for week separators (default: same as label)\ncalendar: \"wticks\"\n\n# Date format: full, rel, short, or custom(%b %d, %Y)\n# date: \"full\"\n\n# Multi-database runs (comma-separated). Leave empty (\"\") to expand every\n# database into its own section, in database.yml order; a database with\n# nothing in the time window collapses to a one-line summary either way.\n# focus - expand only the first database, summarizing the rest.\n# A database with migrations pending is always expanded\n# only:<name> - render only this database (repeatable)\n# skip:<name> - drop this database (repeatable)\n# full - draw every database in full, overriding focus\n# inline - one merged table ordered by version, with a Db column\ndb: \"focus\"\n\n# Compact mode (comma-separated):\n# oneline - one line per migration\n# dense - reduce padding\n# noheader - hide table headers\n# maxw:<N> - max column width\n# hide:<col> - hide a column (repeatable)\n# compact: \"\"\n\n# Rename column headers and cell values in table output\naliases:\n columns:\n Status: Live\n values:\n Status:\n up: \"\u2191\u2191\"\n down: \"\u2193\u2193\"\n # Verb:\n # GET: G\n # POST: P\n"