19 lines
477 B
MySQL
19 lines
477 B
MySQL
|
/*
|
||
|
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.
|
||
|
|
||
|
*/
|
||
|
-- DropForeignKey
|
||
|
ALTER TABLE "Account" DROP CONSTRAINT "Account_userId_fkey";
|
||
|
|
||
|
-- DropForeignKey
|
||
|
ALTER TABLE "Session" DROP CONSTRAINT "Session_userId_fkey";
|
||
|
|
||
|
-- DropTable
|
||
|
DROP TABLE "Account";
|
||
|
|
||
|
-- DropTable
|
||
|
DROP TABLE "Session";
|