Files
pulse/.gitignore
Jared Vititoe 6d15e4d240 Remove database migrations after direct schema fixes
Changes:
- Removed all migration code from server.js
- Database schema fixed directly via MySQL:
  * Dropped users.role column (SSO only)
  * Dropped users.password column (SSO only)
  * Added executions.started_by column
  * Added workflows.created_by column
  * All tables now match expected schema
- Server startup will be faster without migrations

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-07 22:11:07 -05:00

35 lines
306 B
Plaintext

# Node modules
node_modules/
# Environment variables (NEVER commit these!)
.env
.env.local
.env.*.local
# Database files
*.db
*.sqlite
*.sqlite3
# Logs
*.log
npm-debug.log*
logs/
# OS files
.DS_Store
Thumbs.db
# Backups
*.backup
*.bak
# Editor files
.vscode/
.idea/
*.swp
*.swo
*~
# Claude
Claude.md