Getting error while creating table in Oracle DB

Hello All,

I am trying to create a simple table in Oracle database via liquibase but I am getting the below error
Unexpected error running Liquibase: Migration failed for changeset db_changelog.sql::raw::includeAll:
Reason: liquibase.exception.DatabaseException: ORA-00922:
[Failed SQL: (922) CREATE TABLE lb_test_table_3 (
lbtest_id NUMBER NOT NULL,
lbtest_column NUMBER,
PRIMARY KEY (lbtest_id)
);]

There is nothing wrong with the sql as I am able to create the table directly in the database with the same sql.

This is the very first time I am testing Liquibase, please let me know if you have faced a similar issue.

Thanks,

Can you provide the actual changeset definition?