Skip to content

Commit 70fb8ec

Browse files
committed
Round 1 of v2 model removals
1 parent 575413c commit 70fb8ec

File tree

2 files changed

+131
-428
lines changed

2 files changed

+131
-428
lines changed
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/*
2+
Warnings:
3+
4+
- You are about to drop the `JobCounter` table. If the table is not empty, all the data it contains will be lost.
5+
- You are about to drop the `WebhookDeliveryCounter` table. If the table is not empty, all the data it contains will be lost.
6+
- You are about to drop the `ApiIntegrationVote` table. If the table is not empty, all the data it contains will be lost.
7+
- You are about to drop the `ConnectionAttempt` table. If the table is not empty, all the data it contains will be lost.
8+
- You are about to drop the `DeferredScheduledEventService` table. If the table is not empty, all the data it contains will be lost.
9+
- You are about to drop the `DynamicTriggerRegistration` table. If the table is not empty, all the data it contains will be lost.
10+
- You are about to drop the `EndpointIndex` table. If the table is not empty, all the data it contains will be lost.
11+
- You are about to drop the `EventExample` table. If the table is not empty, all the data it contains will be lost.
12+
- You are about to drop the `HttpSourceRequestDelivery` table. If the table is not empty, all the data it contains will be lost.
13+
- You are about to drop the `JobAlias` table. If the table is not empty, all the data it contains will be lost.
14+
- You are about to drop the `JobIntegration` table. If the table is not empty, all the data it contains will be lost.
15+
- You are about to drop the `JobRunAutoYieldExecution` table. If the table is not empty, all the data it contains will be lost.
16+
- You are about to drop the `JobRunStatusRecord` table. If the table is not empty, all the data it contains will be lost.
17+
- You are about to drop the `JobRunSubscription` table. If the table is not empty, all the data it contains will be lost.
18+
- You are about to drop the `KeyValueItem` table. If the table is not empty, all the data it contains will be lost.
19+
- You are about to drop the `MissingConnection` table. If the table is not empty, all the data it contains will be lost.
20+
- You are about to drop the `TaskAttempt` table. If the table is not empty, all the data it contains will be lost.
21+
- You are about to drop the `TriggerSourceOption` table. If the table is not empty, all the data it contains will be lost.
22+
- You are about to drop the `WebhookRequestDelivery` table. If the table is not empty, all the data it contains will be lost.
23+
- You are about to drop the `_JobRunToMissingConnection` table. If the table is not empty, all the data it contains will be lost.
24+
25+
*/
26+
27+
-- DropTable
28+
DROP TABLE IF EXISTS "JobCounter";
29+
30+
-- DropTable
31+
DROP TABLE IF EXISTS "WebhookDeliveryCounter";
32+
33+
-- DropTable
34+
DROP TABLE IF EXISTS "ApiIntegrationVote";
35+
36+
-- DropTable
37+
DROP TABLE IF EXISTS "ConnectionAttempt";
38+
39+
-- DropTable
40+
DROP TABLE IF EXISTS "DeferredScheduledEventService";
41+
42+
-- DropTable
43+
DROP TABLE IF EXISTS "DynamicTriggerRegistration";
44+
45+
-- DropTable
46+
DROP TABLE IF EXISTS "EndpointIndex";
47+
48+
-- DropTable
49+
DROP TABLE IF EXISTS "EventExample";
50+
51+
-- DropTable
52+
DROP TABLE IF EXISTS "HttpSourceRequestDelivery";
53+
54+
-- DropTable
55+
DROP TABLE IF EXISTS "JobAlias";
56+
57+
-- DropTable
58+
DROP TABLE IF EXISTS "JobIntegration";
59+
60+
-- DropTable
61+
DROP TABLE IF EXISTS "JobRunAutoYieldExecution";
62+
63+
-- DropTable
64+
DROP TABLE IF EXISTS "JobRunStatusRecord";
65+
66+
-- DropTable
67+
DROP TABLE IF EXISTS "JobRunSubscription";
68+
69+
-- DropTable
70+
DROP TABLE IF EXISTS "KeyValueItem";
71+
72+
-- DropTable
73+
DROP TABLE IF EXISTS "MissingConnection";
74+
75+
-- DropTable
76+
DROP TABLE IF EXISTS "TaskAttempt";
77+
78+
-- DropTable
79+
DROP TABLE IF EXISTS "TriggerSourceOption";
80+
81+
-- DropTable
82+
DROP TABLE IF EXISTS "WebhookRequestDelivery";
83+
84+
-- DropTable
85+
DROP TABLE IF EXISTS "_JobRunToMissingConnection";
86+
87+
-- DropEnum
88+
DROP TYPE IF EXISTS "EndpointIndexSource";
89+
90+
-- DropEnum
91+
DROP TYPE IF EXISTS "EndpointIndexStatus";
92+
93+
-- DropEnum
94+
DROP TYPE IF EXISTS "JobRunSubscriptionEvents";
95+
96+
-- DropEnum
97+
DROP TYPE IF EXISTS "JobRunSubscriptionRecipientMethod";
98+
99+
-- DropEnum
100+
DROP TYPE IF EXISTS "JobRunSubscriptionStatus";
101+
102+
-- DropEnum
103+
DROP TYPE IF EXISTS "TaskAttemptStatus";

0 commit comments

Comments
 (0)