mobilizon.chapril.org-mobil.../priv/repo/migrations/20191129091227_add_timestamps_to_followers.exs
Thomas Citharel 334d66bf5d
Add admin interface to manage instances subscriptions
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-12-15 21:56:16 +01:00

10 lines
178 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.AddTimestampsToFollowers do
use Ecto.Migration
def change do
alter table(:followers) do
timestamps()
end
end
end