summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170423154511_add_fields_to_users.exs
blob: a079c73bd6f2b983618d963e431fe214729bd463 (plain)
1
2
3
4
5
6
7
8
9
10
defmodule Pleroma.Repo.Migrations.AddFieldsToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add(:local, :boolean, default: true)
      add(:info, :map)
    end
  end
end