- {
 - "databaseChangeLog":[
 - {
 - "changeSet":{
 - "id":"1",
 - "author":"someone",
 - "changes":[
 - {
 - "createTable":{
 - "tableName":"USER",
 - "columns":[
 - {
 - "column":{
 - "name":"NAME",
 - "type":"VARCHAR(255)"
 - }
 - }
 - ]
 - }
 - },
 - {
 - "loadData":{
 - "file":"db/changelogs/1.0.0 initialization/data/user.csv",
 - "tableName":"USER"
 - }
 - }
 - ]
 - }
 - }
 - ]
 - }
 
I want to just drop table with all its content.
I've tried different approaches, but no rollback is triggered
