subman-nextjs/prisma/migrations/20240611095254_init/migration.sql

17 lines
433 B
MySQL
Raw Normal View History

2024-06-11 13:35:56 +00:00
/*
Warnings:
- You are about to drop the `PubsGenres` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `StoriesGenres` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
PRAGMA foreign_keys=off;
DROP TABLE "PubsGenres";
PRAGMA foreign_keys=on;
-- DropTable
PRAGMA foreign_keys=off;
DROP TABLE "StoriesGenres";
PRAGMA foreign_keys=on;