X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20180919060348_users_add_last_refreshed_at.exs;h=16605cf7b855c8933eefd327e5b0f4a964bb8b8e;hb=2fd45e0cb68c60769bf4a6c63ca0213536cfe79e;hp=1942e4e9c8758d4fb27d8196c3064d1f5f994781;hpb=c9f6eb9a419b4c693cdb95c9f9e0fae724d4e415;p=akkoma diff --git a/priv/repo/migrations/20180919060348_users_add_last_refreshed_at.exs b/priv/repo/migrations/20180919060348_users_add_last_refreshed_at.exs index 1942e4e9c..16605cf7b 100644 --- a/priv/repo/migrations/20180919060348_users_add_last_refreshed_at.exs +++ b/priv/repo/migrations/20180919060348_users_add_last_refreshed_at.exs @@ -3,7 +3,7 @@ defmodule Pleroma.Repo.Migrations.UsersAddLastRefreshedAt do def change do alter table(:users) do - add :last_refreshed_at, :naive_datetime + add(:last_refreshed_at, :naive_datetime_usec) end end end