createTable('point_vente', [ 'id' => 'pk', 'nom' => Schema::TYPE_STRING . ' NOT NULL', 'adresse' => Schema::TYPE_TEXT, ]); } public function down() { $this->dropTable('point_vente'); } }