mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 12:25:22 +00:00
12 lines
243 B
MySQL
12 lines
243 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the `Secret` table. If the table is not empty, all the data it contains will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- DropForeignKey
|
||
|
|
ALTER TABLE "Secret" DROP CONSTRAINT "Secret_orgId_fkey";
|
||
|
|
|
||
|
|
-- DropTable
|
||
|
|
DROP TABLE "Secret";
|