From baa8667a38a5cc79571da15844d525c665234edc Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Sat, 7 Mar 2026 15:27:51 +0100 Subject: =?UTF-8?q?schema:=20Add=20NOT=20NULL=20constraints=20on=20some=20?= =?UTF-8?q?of=20Lantm=C3=A4teriet's=20columns.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- schema.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'schema.sql') diff --git a/schema.sql b/schema.sql index 46dd2be..768f50b 100644 --- a/schema.sql +++ b/schema.sql @@ -368,8 +368,8 @@ SET default_table_access_method = heap; CREATE TABLE lm_topo250.kommunyta ( ogc_fid bigint NOT NULL, - objektidentitet uuid, - skapad timestamp without time zone, + objektidentitet uuid NOT NULL, + skapad timestamp without time zone NOT NULL, kommunkod smallint NOT NULL, wkb_geometry public.geometry(MultiPolygon,3006) NOT NULL ); @@ -466,8 +466,8 @@ ALTER SEQUENCE lm_topo250.kommunyta_sub_ogc_fid_seq OWNED BY lm_topo250.kommunyt CREATE TABLE lm_topo250.lansyta ( ogc_fid bigint NOT NULL, - objektidentitet uuid, - skapad timestamp without time zone, + objektidentitet uuid NOT NULL, + skapad timestamp without time zone NOT NULL, lanskod smallint NOT NULL, wkb_geometry public.geometry(MultiPolygon,3006) NOT NULL ); -- cgit v1.2.3