17 lines
433 B
MySQL
17 lines
433 B
MySQL
|
/*
|
||
|
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;
|