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