Skip to content

Commit

Permalink
fix: BED-5080 - remove additional integer types from SQL schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zinic committed Dec 2, 2024
1 parent d82941d commit e8a5090
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/go/dawgs/drivers/pg/query/sql/schema_up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ $$
begin
create type nodeComposite as
(
id integer,
id bigint,
kind_ids smallint[8],
properties jsonb
);
Expand Down Expand Up @@ -133,9 +133,9 @@ $$
begin
create type edgeComposite as
(
id integer,
start_id integer,
end_id integer,
id bigint,
start_id bigint,
end_id bigint,
kind_id smallint,
properties jsonb
);
Expand Down

0 comments on commit e8a5090

Please sign in to comment.