-- looks routine in review, locks your table in production:
CREATE INDEX idx_orders_customer ON orders (customer_id);
ALTER TABLE users ALTER COLUMN email SET NOT NULL;
Enter fullscreen mode
Exit fullscreen mode
-- looks routine in review, locks your table in production: CREATE INDEX idx_orders_customer ON...
-- looks routine in review, locks your table in production:
CREATE INDEX idx_orders_customer ON orders (customer_id);
ALTER TABLE users ALTER COLUMN email SET NOT NULL;
Enter fullscreen mode
Exit fullscreen mode

A migration can look tiny in a pull request and still be the riskiest line of a release. A column...

It was a Saturday evening, and I was confident. A new model had just dropped, and the leaderboard...

I got tired of migration linters that just grep for scary keywords. CREATE INDEX without...

Database migrations are one of those things that often look harmless during code review. A migration...

A while back I wrote up the pass I run over code an assistant wrote for me: secrets in git history,...

You've seen the headlines by now. An agent in Cursor wiped a company's production database, backups...