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

17 lines
433 B
SQL

/*
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;