-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathmigration.sql
More file actions
20 lines (15 loc) · 767 Bytes
/
migration.sql
File metadata and controls
20 lines (15 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
Warnings:
- You are about to drop the `ExternalAccount` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `Integration` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `IntegrationAuthMethod` table. If the table is not empty, all the data it contains will be lost.
- You are about to drop the `IntegrationDefinition` table. If the table is not empty, all the data it contains will be lost.
*/
-- DropTable
DROP TABLE IF EXISTS "ExternalAccount" CASCADE;
-- DropTable
DROP TABLE IF EXISTS "Integration" CASCADE;
-- DropTable
DROP TABLE IF EXISTS "IntegrationAuthMethod" CASCADE;
-- DropTable
DROP TABLE IF EXISTS "IntegrationDefinition" CASCADE;