From 2c0e6c0ecd215999a0451608d50f14d1052eec5f Mon Sep 17 00:00:00 2001 From: v0idpwn Date: Thu, 2 Nov 2023 15:11:07 +0200 Subject: [PATCH] Fix migration bug --- lib/kafkaesque/migrations.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kafkaesque/migrations.ex b/lib/kafkaesque/migrations.ex index abede5f..b357b04 100644 --- a/lib/kafkaesque/migrations.ex +++ b/lib/kafkaesque/migrations.ex @@ -35,7 +35,7 @@ defmodule Kafkaesque.Migrations do def down(:v2, :v1) do alter table(:kafkaesque_messages) do - drop(:key) + remove(:key) end end end