21 lines
643 B
SQL
21 lines
643 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the `accounts` table. If the table is not empty, all the data it contains will be lost.
|
|
- You are about to drop the `sessions` table. If the table is not empty, all the data it contains will be lost.
|
|
- You are about to drop the `users` table. If the table is not empty, all the data it contains will be lost.
|
|
- You are about to drop the `verification_requests` table. If the table is not empty, all the data it contains will be lost.
|
|
|
|
*/
|
|
-- DropTable
|
|
DROP TABLE "accounts";
|
|
|
|
-- DropTable
|
|
DROP TABLE "sessions";
|
|
|
|
-- DropTable
|
|
DROP TABLE "users";
|
|
|
|
-- DropTable
|
|
DROP TABLE "verification_requests";
|