summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170423154511_add_fields_to_users.exs
blob: 84de74bc4104ba51df403e85c62fa4c1f4b665cd (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