mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
// Migration: Adding a new table to store if somebody shared a job with someone
|
|
|
|
export function up(db) {
|
|
db.exec(`
|
|
ALTER TABLE jobs ADD COLUMN shared_with_user jsonb DEFAULT '[]'
|
|
`);
|
|
}
|