move to 2.5.5
[anni] / priv / repo / migrations / 20190513175809_change_hide_column_in_filter_table.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.ChangeHideColumnInFilterTable do
6   use Ecto.Migration
7
8   def up do
9     alter table(:filters) do
10       modify(:hide, :boolean, default: false)
11     end
12   end
13
14   def down do
15     alter table(:filters) do
16       modify(:hide, :boolean)
17     end
18   end
19 end