- Create 0009_add_display_password.sql migration - Add entry to drizzle journal - This adds the display_password column that was missing in production The plan is to nuke the production database and let all migrations run from scratch on container restart. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
3 lines
156 B
SQL
3 lines
156 B
SQL
-- Add display_password column to arcade_rooms for showing plain text passwords to room owners
|
|
ALTER TABLE `arcade_rooms` ADD `display_password` text(100);
|