mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-02-24 14:13:02 +01:00
9 lines
193 B
Elixir
9 lines
193 B
Elixir
defmodule Pleroma.Repo.Migrations.AddAliasesToUsers do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add(:ap_aliases, {:array, :string}, default: [])
|
|
end
|
|
end
|
|
end
|