Subject | Override domain null constraint |
---|---|
Author | firebirdsql |
Post date | 2011-09-09T22:34:38Z |
I have the following ddl:
CREATE DOMAIN test_domain VARCHAR(25) NOT NULL;
However, for one of the tables column that use this domain, the column can be null. How can I override the domain NOT NULL constraint?
CREATE DOMAIN test_domain VARCHAR(25) NOT NULL;
However, for one of the tables column that use this domain, the column can be null. How can I override the domain NOT NULL constraint?