diff options
author | Sachin Joshi <satchin.joshi@gmail.com> | 2019-05-13 23:50:33 +0545 |
---|---|---|
committer | Sachin Joshi <satchin.joshi@gmail.com> | 2019-05-14 00:13:15 +0545 |
commit | 7701a4c84191a445e0b62e8a241e8af86f86e16a (patch) | |
tree | b17517c7bfe0829f3ab31c52399edad451dedf9d /priv | |
parent | 16cb9e5f1cae84322bd7953e58b438f3b4bd8b9c (diff) | |
download | pleroma-7701a4c84191a445e0b62e8a241e8af86f86e16a.tar.gz pleroma-7701a4c84191a445e0b62e8a241e8af86f86e16a.zip |
Make irreversible field default to false in filters
Diffstat (limited to 'priv')
-rw-r--r-- | priv/repo/migrations/20190513175809_change_hide_column_in_filter_table.exs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190513175809_change_hide_column_in_filter_table.exs b/priv/repo/migrations/20190513175809_change_hide_column_in_filter_table.exs new file mode 100644 index 000000000..2ffb88cc9 --- /dev/null +++ b/priv/repo/migrations/20190513175809_change_hide_column_in_filter_table.exs @@ -0,0 +1,9 @@ +defmodule Pleroma.Repo.Migrations.ChangeHideColumnInFilterTable do + use Ecto.Migration + + def change do + alter table(:filters) do + modify :hide, :boolean, default: false + end + end +end |