Skip to content

Commit

Permalink
Add simple fixture test
Browse files Browse the repository at this point in the history
  • Loading branch information
griffio committed Dec 22, 2023
1 parent 4fa5765 commit f5f73e0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@ CREATE TABLE all_types(

some_interval_d TIMESTAMP NOT NULL DEFAULT NOW() - INTERVAL '5 days',

some_interval_e INTERVAL DEFAULT INTERVAL '3h' + INTERVAL '20m'
some_interval_e INTERVAL DEFAULT INTERVAL '3h' + INTERVAL '20m',

some_default_uuid UUID DEFAULT gen_random_uuid(),

some_default_sequence INTEGER DEFAULT nextval('some_seq')

);

Expand Down

0 comments on commit f5f73e0

Please sign in to comment.