summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170529093232_longer_bios.exs
blob: 9188f4beef691aa70524a6d2b8bff87050fbf564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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