Merge branch 'develop' into dtluna/pleroma-feature/unfollow-activity
[akkoma] / priv / repo / migrations / 20170423154511_add_fields_to_users.exs
1 defmodule Pleroma.Repo.Migrations.AddFieldsToUsers do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add :local, :boolean, default: true
7 add :info, :map
8 end
9 end
10 end