summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170529093232_longer_bios.exs
blob: e25e5e144afb3d21d33252822e05ca5cc65be066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
defmodule Pleroma.Repo.Migrations.LongerBios do
  use Ecto.Migration

  def up do
    alter table(:users) do
      modify(:bio, :text)
    end
  end

  def down do
    alter table(:users) do
      modify(:bio, :string)
    end
  end
end