The following says that it is required.
$product->define_column('x_in_stock_date', 'In Stock Date')->validation();As well as the following.
$product->define_column('x_in_stock_date', 'In Stock Date')->validation()->optional();The only way around this is to not use any validation.
$product->define_column('x_in_stock_date', 'In Stock Date')

Help



Report