You can import it using TMS Data Modeler and remove the TColumnProp.Required from the list of column properties using customization script. For example:
procedure OnColumnGenerated(Args: TColumnGeneratedArgs);
begin
if Args.DBField.FieldName = 'Dummy' then
begin
TCodeSnippetExpression(Args.ColumnAttr.Arguments[1].Value).Value := '[TColumnProp.NoInsert, TColumnProp.NoUpdate]';
end;
end;