comparison schema/gemma.sql @ 4995:4a816ecf70de wmst-config

Added support for WMS-Time in configuring the GeoServer.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 06 Mar 2020 11:48:11 +0100
parents de190de05f67
children f697a398eff4
comparison
equal deleted inserted replaced
4991:6a48e5c6fe2f 4995:4a816ecf70de
407 srid int REFERENCES spatial_ref_sys, 407 srid int REFERENCES spatial_ref_sys,
408 -- SLD style document or ZIP blob: 408 -- SLD style document or ZIP blob:
409 style bytea, 409 style bytea,
410 as_wms boolean NOT NULL DEFAULT TRUE, 410 as_wms boolean NOT NULL DEFAULT TRUE,
411 as_wfs boolean NOT NULL DEFAULT TRUE, 411 as_wfs boolean NOT NULL DEFAULT TRUE,
412 wmst_attribute varchar DEFAULT NULL,
413 wmst_end_attribute varchar DEFAULT NULL,
412 -- Either give a valid relation or a SQL statement: 414 -- Either give a valid relation or a SQL statement:
413 CHECK (to_regclass(schema || '.' || name) IS NOT NULL 415 CHECK (to_regclass(schema || '.' || name) IS NOT NULL
414 OR view_def IS NOT NULL) 416 OR view_def IS NOT NULL)
415 ) 417 )
416 418