cityssm/parking-ticket-system

View on GitHub
database/parkingDB/updateParkingLocation.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import sqlite from 'better-sqlite3';
import { parkingDB as databasePath } from '../../data/databasePaths.js';
import { clearCacheByTableName } from '../../helpers/functions.cache.js';
export default function updateParkingLocation(requestBody) {
    const database = sqlite(databasePath);
    const info = database
        .prepare(`update ParkingLocations
        set locationName = ?,
        locationClassKey = ?
        where locationKey = ?
        and isActive = 1`)
        .run(requestBody.locationName, requestBody.locationClassKey, requestBody.locationKey);
    database.close();
    clearCacheByTableName('ParkingLocations');
    return {
        success: info.changes > 0
    };
}