diff options
author | rinpatch <rinpatch@sdf.org> | 2019-03-20 16:16:29 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-03-20 16:16:29 +0300 |
commit | e59cfa7cacd48d699e42b63eb9ec9503d72083a2 (patch) | |
tree | 4150a5aa6198d05f1516f58b0c6a36188b31920b /priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs | |
parent | cbc4a76b43c1342ba2a2ddc03db113c403688e8b (diff) | |
download | pleroma-e59cfa7cacd48d699e42b63eb9ec9503d72083a2.tar.gz pleroma-e59cfa7cacd48d699e42b63eb9ec9503d72083a2.zip |
modify the migrations to use naive_datetime_usec
Diffstat (limited to 'priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs')
-rw-r--r-- | priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs b/priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs index b4332870e..ead1d023e 100644 --- a/priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs +++ b/priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs @@ -6,7 +6,7 @@ defmodule Pleroma.Repo.Migrations.CreateOAuthAuthorizations do add :app_id, references(:apps) add :user_id, references(:users) add :token, :string - add :valid_until, :naive_datetime + add :valid_until, :naive_datetime_usec add :used, :boolean, default: false timestamps() |