dropTable('{{%{table}}}'); } /** * {@inheritdoc} */ public function safeDown() { \$this->createTable('{{%{table}}}', [ 'id' => \$this->primaryKey(), 'body' => \$this->text()->notNull(), 'price' => \$this->money(11,2), ]); } } CODE;