createTable('vk_raw', [ 'id' => $this->bigInteger(), 'data' => $this->text() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('vk_raw'); } }