I am switching to Phalcon from Lavael. I was reading https://docs.phalcon.io/en/latest/reference/migrations.html and did not see how to drop a table or column in the migration. In Laravel Schema::drop('users') drops a table and $table->dropColumn('votes') drops a column. How is this done in Phalcon's migrations?
Thank you.