7dd7e8fc36
Signed-off-by: Thomas Citharel <tcit@tcit.fr> Fix credo warnings Signed-off-by: Thomas Citharel <tcit@tcit.fr> Show elixir version Signed-off-by: Thomas Citharel <tcit@tcit.fr> Also lint migrations Signed-off-by: Thomas Citharel <tcit@tcit.fr> Reset allow failure to false Signed-off-by: Thomas Citharel <tcit@tcit.fr>
20 lines
409 B
Elixir
20 lines
409 B
Elixir
defmodule Mobilizon.Repo.Migrations.MakeFollowerTableUnique do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
create(
|
|
unique_index(:followers, [:actor_id, :target_actor_id],
|
|
name: :followers_actor_target_actor_unique_index
|
|
)
|
|
)
|
|
end
|
|
|
|
def down do
|
|
drop(
|
|
index(:followers, [:actor_id, :target_actor_id],
|
|
name: :followers_actor_target_actor_unique_index
|
|
)
|
|
)
|
|
end
|
|
end
|