adding ability to tag listings eg if you have applied to it / adding ability to add notes to a listing

This commit is contained in:
orangecoding
2026-06-02 12:48:01 +02:00
parent 2bcec04d55
commit 317ef79336
25 changed files with 741 additions and 49 deletions

View File

@@ -0,0 +1,11 @@
/*
* Copyright (c) 2026 by Christian Kellner.
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
*/
export function up(db) {
db.exec(`
ALTER TABLE listings ADD COLUMN status TEXT;
CREATE INDEX IF NOT EXISTS idx_listings_status ON listings (status);
`);
}

View File

@@ -0,0 +1,10 @@
/*
* Copyright (c) 2026 by Christian Kellner.
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
*/
export function up(db) {
db.exec(`
ALTER TABLE listings ADD COLUMN notes TEXT;
`);
}