mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2025-01-23 17:18:36 +00:00
e1e9b0fc11
Also add a unicity constraint on the followers table Signed-off-by: Thomas Citharel <tcit@tcit.fr>
11 lines
351 B
Elixir
11 lines
351 B
Elixir
defmodule Eventos.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
|