Definition
/**
* Create a COMMENT ON builder.
*
* Example: comment(CommentTarget::TABLE, 'users')->is('User accounts table')
* Produces: COMMENT ON TABLE users IS 'User accounts table'
*
* @param CommentTarget $target Target type (TABLE, COLUMN, INDEX, etc.)
* @param string $name Target name (use 'table.column' for COLUMN targets)
*/
comment(CommentTarget $target, string $name) : CommentFinalStep