Created
February 23, 2012 21:07
-
-
Save bradfordw/1895057 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
create table | |
foo | |
( | |
bool_baz int not null, | |
constraint | |
chk_bool_baz | |
check((bool_baz is not null and bool_baz in (1,0))) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment