diff options
author | rinpatch <rinpatch@sdf.org> | 2019-03-20 16:13:23 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-03-20 16:13:23 +0300 |
commit | cbc4a76b43c1342ba2a2ddc03db113c403688e8b (patch) | |
tree | 1a7a23ae2ffe33cb9786860ef190b767dcf3ef2d | |
parent | 19a19bdd8145bd91b38d9c6571d2e7c597754055 (diff) | |
download | pleroma-cbc4a76b43c1342ba2a2ddc03db113c403688e8b.tar.gz pleroma-cbc4a76b43c1342ba2a2ddc03db113c403688e8b.zip |
Fix filter migration
-rw-r--r-- | priv/repo/migrations/20180813003722_create_filters.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20180813003722_create_filters.exs b/priv/repo/migrations/20180813003722_create_filters.exs index a273004ee..8e7129f34 100644 --- a/priv/repo/migrations/20180813003722_create_filters.exs +++ b/priv/repo/migrations/20180813003722_create_filters.exs @@ -8,7 +8,7 @@ defmodule Pleroma.Repo.Migrations.CreateFilters do add :hide, :boolean add :phrase, :string add :context, {:array, :string} - add :expires_at, :datetime + add :expires_at, :utc_datetime add :whole_word, :boolean timestamps() |