2018-04-29 13:02:46 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateLists do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-07-01 01:08:07 +00:00
|
|
|
create_if_not_exists table(:lists) do
|
2018-04-29 13:02:46 +00:00
|
|
|
add :user_id, references(:users, on_delete: :delete_all)
|
|
|
|
add :title, :string
|
|
|
|
add :following, {:array, :string}
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-07-01 01:08:07 +00:00
|
|
|
create_if_not_exists index(:lists, [:user_id])
|
2018-04-29 13:02:46 +00:00
|
|
|
end
|
|
|
|
end
|