I am trying to create a table in MySql using Liquibase. Below is the syntax I used, but Liquibase is not picking up the TABLESPACE at all.
<createTable tableName="TEST" tablespace="DATA01" >
<column name="ID" type="java.sql.Types.BIGINT(19)">
<constraints nullable="false"/>
</column>
</createTable>
But Liquibase is firing below command without TABLESPACE.
CREATE TABLE TEST (ID BIGINT(19) NOT NULL);
I am using Liquibase 3.5. What wrong I am doing?