createTable('price_upload', [ 'sku' => $this->string(), 'price' => $this->decimal(), 'price_old' => $this->decimal(), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('price_upload'); } }