view schema/updates/1203/01.fa_fix_position_field.sql @ 5449:d01c098562d9 uiimprovements

Bottleneckoverview: Put selector for older scans into date column
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 13 Jul 2021 16:17:01 +0200
parents 7128741faeb9
children
line wrap: on
line source

-- This is Free Software under GNU Affero General Public License v >= 3.0
-- without warranty, see README.md and license for details.

-- SPDX-License-Identifier: AGPL-3.0-or-later
-- License-Filename: LICENSES/AGPL-3.0.txt

-- Copyright (C) 2019 by via donau
--   – Österreichische Wasserstraßen-Gesellschaft mbH
-- Software engineering by Intevation GmbH

-- Author(s):
--  * Sascha Wilde <sascha.wilde@intevation.de>

ALTER TABLE waterway.fairway_availability
    ADD COLUMN IF NOT EXISTS position varchar;

UPDATE waterway.fairway_availability SET position = position_code;

ALTER TABLE waterway.fairway_availability
    DROP COLUMN IF EXISTS position_code;