11 lines
238 B
SQL
11 lines
238 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the `Post` table. If the table is not empty, all the data it contains will be lost.
|
|
|
|
*/
|
|
-- DropForeignKey
|
|
ALTER TABLE "Post" DROP CONSTRAINT "Post_authorId_fkey";
|
|
|
|
-- DropTable
|
|
DROP TABLE "Post";
|