When i create table:
Table components{
id int[pk] // I have not space between int and [pk]
descryption varchar
}
And there is not space is exported like this:
CREATE TABLE components
(
id
INT[pk],
descryption
VARCHAR(255)
);
So I think it would be better if I have sintax issues the export be blocked or when is exported the program be able to find where there is not space and put it automatically.