forked from potsda.mn/mobilizon
c61c75163f
Closes #19 #86 #87 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
14 lines
401 B
Elixir
14 lines
401 B
Elixir
defmodule Mobilizon.Repo.Migrations.FeedTokenTable do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:feed_token, primary_key: false) do
|
|
add(:token, :string, primary_key: true)
|
|
add(:actor_id, references(:actors, on_delete: :delete_all), null: true)
|
|
add(:user_id, references(:users, on_delete: :delete_all), null: false)
|
|
|
|
timestamps(updated_at: false)
|
|
end
|
|
end
|
|
end
|