Full auto mechanic shop management tool: jobs, invoices, estimates, inspections, inventory, recommendations, technicians, appointments, reports, file uploads, kanban board, and more. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 lines
168 B
TypeScript
5 lines
168 B
TypeScript
// Add visibility flag to job notes — 'internal' or 'customer'
|
|
export const up = `
|
|
ALTER TABLE job_notes ADD COLUMN visibility TEXT NOT NULL DEFAULT 'internal';
|
|
`;
|