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