database/parkingDB/deleteParkingLocation.ts
import sqlite from 'better-sqlite3'
import { parkingDB as databasePath } from '../../data/databasePaths.js'
import { clearCacheByTableName } from '../../helpers/functions.cache.js'
import type { AddUpdateParkingLocationReturn } from './getParkingLocations.js'
export default function deleteParkingLocation(
locationKey: string
): AddUpdateParkingLocationReturn {
const database = sqlite(databasePath)
// Do update
const info = database
.prepare(
`update ParkingLocations
set isActive = 0
where locationKey = ?
and isActive = 1`
)
.run(locationKey)
database.close()
clearCacheByTableName('ParkingLocations')
return {
success: info.changes > 0
}
}