view schema/updates/1314/01.fix_sr_dateinfo.sql @ 5507:279900b28b1b deactivate-users

Client: Notify user by successfully deleting/deactivating users * Display an info-toast for the user's deleting-process.
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 23 Sep 2021 14:47:36 +0200
parents 3a8ec3c396e0
children
line wrap: on
line source

UPDATE sys_admin.published_services SET view_def = $$
        SELECT bottleneck_id,
            to_char(date_info, 'YYYY-MM-DD') AS date_info,
            height,
            areas,
            surtyp
        FROM waterway.sounding_results_iso_areas ia
            JOIN waterway.sounding_results sr ON sr.id = ia.sounding_result_id
    $$ WHERE name = 'sounding_results_areas_geoserver';