In order to create table in database, you need at least one column;
CREATE TABLE new_table LIKE old_table;
CREATE TABLE ... LIKE to create a new empty new_table based on the definition of old_table, including any column attributes and indexes defined in the old_table.