580b9eb0fb1b5c05713378f510071d14e576455d
[akkoma] / 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