Skip to content

Commit

Permalink
Revert "Fix for postgres related to https://github.com/liquibase/liqu…
Browse files Browse the repository at this point in the history
…ibase/pu…"

This reverts commit cb6682a.
  • Loading branch information
filipelautert authored Feb 24, 2025
1 parent cb6682a commit 675d314
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CREATE TABLE public.test_table (id INTEGER, bit_col BOOLEAN, boolean_col BOOLEAN)
INSERT INTO public.test_table (id) VALUES (1)
CREATE TABLE public.test_table (id INTEGER, bit_col BIT(1), boolean_col BOOLEAN)
INSERT INTO public.test_table (id) VALUES (1)
UPDATE public.test_table SET bit_col = B'1' WHERE bit_col IS NULL
ALTER TABLE public.test_table ALTER COLUMN bit_col SET NOT NULL
UPDATE public.test_table SET boolean_col = 'TRUE' WHERE boolean_col IS NULL
Expand Down

0 comments on commit 675d314

Please sign in to comment.