Hi All,
I'm trying to create a Boolean field into my custom schema with default value set as "true".
I tried with the following statement:
<attribute default="true" label="Export to FOX" name="foxExportFlgg" type="boolean"/>
Unfortunately the default value is always set as false.
This is the generated SQL code:
ALTER TABLE NmsDelivery ADD iFoxExportFlgg SMALLINT;
UPDATE NmsDelivery SET iFoxExportFlgg = 0;
ALTER TABLE NmsDelivery ALTER COLUMN iFoxExportFlgg SET Default 0;
ALTER TABLE NmsDelivery ALTER COLUMN iFoxExportFlgg SET NOT NULL;
Could you please help me?