When using Spring Test's @Sql annotation, can we add two values, TEST_CLASS and TEST_METHOD, to the ExecutionPhase enum? This would allow scripts to be executed both before and after the test class (or test method), eliminating the need for two separate @Sql annotations.

Recently, while using the @Sql annotation, I often need to perform the same database operations both before and after test methods to ensure data environment cleanliness. For such scenarios, adding these enum values would reduce the need for writing an extra @Sql annotation.