Formatted SQL does not attempt to handle any logical change command including tag, it only supports raw sql.
Currently the command to tag the database depends on the database type, but is basically:
- update databasechangelog set tag='YOUR_TAG' where dateexecuted = (select max(dateexecuted) from databasechangelog);
which you could call directly from the sql file
Nathan