amati/prisma/migrations/20240125182804_remove_unused_tables/migration.sql
2024-01-26 01:29:02 +07:00

23 lines
648 B
SQL

/*
Warnings:
- You are about to drop the `Account` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `Session` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `VerificationToken` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropForeignKey
ALTER TABLE `Account` DROP FOREIGN KEY `Account_userId_fkey`;
-- DropForeignKey
ALTER TABLE `Session` DROP FOREIGN KEY `Session_userId_fkey`;
-- DropTable
DROP TABLE `Account`;
-- DropTable
DROP TABLE `Session`;
-- DropTable
DROP TABLE `VerificationToken`;