Files
fredy/lib/services/storage/migrations/sql/5.job-sharing.js

8 lines
194 B
JavaScript
Raw Normal View History

2025-10-08 12:16:10 +02:00
// Migration: Adding a new table to store if somebody shared a job with someone
2025-10-07 21:06:59 +02:00
export function up(db) {
db.exec(`
ALTER TABLE jobs ADD COLUMN shared_with_user jsonb DEFAULT '[]'
`);
}