14 lines
530 B
SQL
14 lines
530 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `guild_id` on the `discord_accounts` table. All the data in the column will be lost.
|
|
- You are about to drop the column `guild_name` on the `discord_accounts` table. All the data in the column will be lost.
|
|
- You are about to drop the column `scope` on the `discord_accounts` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "discord_accounts" DROP COLUMN "guild_id",
|
|
DROP COLUMN "guild_name",
|
|
DROP COLUMN "scope",
|
|
ADD COLUMN "email" TEXT;
|