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