Fix mix format and format migrations too
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>
This commit is contained in:
@@ -2,10 +2,18 @@ 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)
|
||||
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)
|
||||
drop(
|
||||
index(:followers, [:actor_id, :target_actor_id],
|
||||
name: :followers_actor_target_actor_unique_index
|
||||
)
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user