Please add support for the following constructs ( used by Postgres, Oracle, Redshift ) :
COMMENT ON TABLE texto_fichero is "This is a sample comment";
COMMENT ON COLUMN texto_fichero.fichero_id is 'This is a comment';
MySql uses:
ALTER TABLE texto_fichero COMMENT "This is a sample comment";
ALTER TABLE texto_fichero MODIFY id COMMENT 'some comment';
Please add support for the following constructs ( used by Postgres, Oracle, Redshift ) :
COMMENT ON TABLE
texto_ficherois "This is a sample comment";COMMENT ON COLUMN
texto_fichero.fichero_idis 'This is a comment';MySql uses:
ALTER TABLE
texto_ficheroCOMMENT "This is a sample comment";ALTER TABLE
texto_ficheroMODIFY id COMMENT 'some comment';