← Changelog Truncate/drop tables, staged row deletes, and auto-reconnect
Right-click tables in the schema sidebar to truncate or drop them, stage row deletions alongside cell edits and commit them in a single transaction, and auto-reconnect databases when the network returns after sleep or a wifi blip.
Highlights
- Truncate and drop tables — right-click any table in the schema sidebar to truncate or drop. Typed-name confirmation prevents accidents; truncate exposes RESTART IDENTITY and CASCADE, drop exposes CASCADE.
- Stage row deletes — press ⌫ on a row to stage its deletion. Pending edits and deletes commit in one transaction, the pill flips red so destructive intent is obvious, and ⌫ toggles so a misclick is one keypress to undo.
- Auto-reconnect — connections redial automatically when the network returns after sleep or a wifi blip. A manual Reconnect button lands as a fallback.
- Stable pagination order — tables default to primary key ASC when no column header is selected. Without a deterministic order, paging through
LIMIT/OFFSET could show duplicate or missing rows as the heap shifted under writes.