1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-08 00:36:16 +01:00
pleroma/priv/repo/migrations/20170423154511_add_fields_to_users.exs
2017-04-24 08:49:09 +02:00

11 lines
201 B
Elixir

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