Skip to content

Commit

Permalink
fix not null constraint in install
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaelicke committed Dec 19, 2024
1 parent 7535560 commit 32c2341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metacatalog_api/sql/maintain/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ CREATE TABLE IF NOT EXISTS {schema}.datasources
(
id integer NOT NULL DEFAULT nextval('datasources_id_seq'::regclass),
type_id integer NOT NULL,
datatype_id integer NOT NULL,
datatype_id integer,
encoding character varying(64) COLLATE pg_catalog."default",
path character varying COLLATE pg_catalog."default" NOT NULL,
data_names character varying(128)[] COLLATE pg_catalog."default",
Expand Down

0 comments on commit 32c2341

Please sign in to comment.