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

  def up do
    alter table(:filters) do
      modify(:hide, :boolean, default: false)
    end
  end

  def down do
    alter table(:filters) do
      modify(:hide, :boolean)
    end
  end
end