Add ability to set a default post expiry (#321)
[akkoma] / priv / repo / migrations / 20191025081729_add_move_support_to_users.exs
1 defmodule Pleroma.Repo.Migrations.AddMoveSupportToUsers do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add(:also_known_as, {:array, :string}, default: [], null: false)
7 add(:allow_following_move, :boolean, default: true, null: false)
8 end
9 end
10 end