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