Skip to content

Commit

Permalink
Update distribution 9 mult and remove mode column
Browse files Browse the repository at this point in the history
  • Loading branch information
youngkidwarrior committed Nov 6, 2024
1 parent 6dea011 commit 36d95e4
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
DROP VIEW IF EXISTS "public"."distribution_verifications_summary";

ALTER TABLE "public"."distribution_verification_values"
DROP COLUMN "mode";

-- chaneg distribution_nine send_streak multiplier_max from 5.0 to 2.0 and change the step to .05
UPDATE
distribution_verification_values
SET
multiplier_max = 2.0,
multiplier_step = 0.05
WHERE
distribution_id = 9
AND type = 'send_streak';

0 comments on commit 36d95e4

Please sign in to comment.