Replies: 1 comment 5 replies
-
There isn't a method for creating domains in Sequel. You should use: DB.run("CREATE DOMAIN asn AS bigint CHECK(VALUE >= 0 AND VALUE <= 4294967295);") |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I would like to know how to enter the following SQL statement in Sequel:
(as I couldn't find a unsigned 32bit integer)
I could not find a create_domain function in the documentation.
I would be very glad to get some answers!
Beta Was this translation helpful? Give feedback.
All reactions