feat(macros): support nullable column override

This commit is contained in:
Austin Bonander
2020-06-12 19:47:16 -07:00
committed by Ryan Leckey
parent 897c8f429a
commit f2515e2472
7 changed files with 110 additions and 8 deletions

View File

@@ -6,3 +6,5 @@ CREATE TABLE tweet
is_sent BOOLEAN NOT NULL DEFAULT TRUE,
owner_id BIGINT
);
insert into tweet(id, text, owner_id) values (1, '#sqlx is pretty cool!', 1);