Created
July 29, 2020 14:24
-
-
Save klaussilveira/229c3799d3943c08b801038316c4d61d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alter table books | |
add constraint books_doc_isbn_ok | |
check( | |
doc->>'ISBN' is not null and | |
jsonb_typeof(doc->'ISBN') = 'number' and | |
(doc->>'ISBN')::bigint > 0 and | |
length(doc->>'ISBN') = 13 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment