/*
  Warnings:

  - You are about to drop the column `id_group` on the `users` table. All the data in the column will be lost.
  - You are about to drop the column `id_network_provider` on the `users` table. All the data in the column will be lost.

*/
-- DropForeignKey
ALTER TABLE `users` DROP FOREIGN KEY `users_id_group_fkey`;

-- DropIndex
DROP INDEX `users_id_group_fkey` ON `users`;

-- AlterTable
ALTER TABLE `users` DROP COLUMN `id_group`,
    DROP COLUMN `id_network_provider`;
