mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-03 20:31:23 -05:00
add new pipeline events submissionUpdated & submissionFinished
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
-- AlterEnum
|
||||
-- This migration adds more than one value to an enum.
|
||||
-- With PostgreSQL versions 11 and earlier, this is not possible
|
||||
-- in a single migration. This can be worked around by creating
|
||||
-- multiple migrations, each migration adding only one value to
|
||||
-- the enum.
|
||||
|
||||
|
||||
ALTER TYPE "PipelineEvent" ADD VALUE 'submissionUpdated';
|
||||
ALTER TYPE "PipelineEvent" ADD VALUE 'submissionFinished';
|
||||
@@ -19,6 +19,8 @@ enum PipelineType {
|
||||
|
||||
enum PipelineEvent {
|
||||
submissionCreated
|
||||
submissionUpdated
|
||||
submissionFinished
|
||||
}
|
||||
|
||||
model Pipeline {
|
||||
|
||||
Reference in New Issue
Block a user