1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-18 02:49:18 +00:00
akkoma/priv/repo/migrations/20170423154511_add_fields_to_users.exs
2019-10-08 15:16:39 +03:00

11 lines
203 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