modify the migrations to use naive_datetime_usec
authorrinpatch <rinpatch@sdf.org>
Wed, 20 Mar 2019 13:16:29 +0000 (16:16 +0300)
committerrinpatch <rinpatch@sdf.org>
Wed, 20 Mar 2019 13:16:29 +0000 (16:16 +0300)
priv/repo/migrations/20170426154155_create_websub_client_subscription.exs
priv/repo/migrations/20170906143140_create_o_auth_authorizations.exs
priv/repo/migrations/20170906152508_create_o_auth_token.exs
priv/repo/migrations/20180919060348_users_add_last_refreshed_at.exs
priv/repo/migrations/20190123125546_create_instances.exs

index f427828409368b4ae4303072edb9b936db85db07..89d3af7aee5ff7ac67c47c44b50f3fc29213c270 100644 (file)
@@ -5,7 +5,7 @@ defmodule Pleroma.Repo.Migrations.CreateWebsubClientSubscription do
     create table(:websub_client_subscriptions) do
       add :topic, :string
       add :secret, :string
-      add :valid_until, :naive_datetime
+      add :valid_until, :naive_datetime_usec
       add :state, :string
       add :subscribers, :map
 
index b4332870e5843271539b69672a1b0b6d1f12089d..ead1d023e06f9bf0de991bb9e58f4d27e5908ccd 100644 (file)
@@ -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()
index 7f8550f336e25a68f15f28d8d1296fc93cbd3d0e..ed56bbf364ed93bbbb8b129e49a468bd2d2224fc 100644 (file)
@@ -7,7 +7,7 @@ defmodule Pleroma.Repo.Migrations.CreateOAuthToken do
       add :user_id, references(:users)
       add :token, :string
       add :refresh_token, :string
-      add :valid_until, :naive_datetime
+      add :valid_until, :naive_datetime_usec
 
       timestamps()
     end
index 1942e4e9c8758d4fb27d8196c3064d1f5f994781..815177e054c13a7bfb93b1437edaefbc572af4fc 100644 (file)
@@ -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
index b527ad7ec3cf83aeb2abc88e6b690caf95aecbac..3d23b343e305754a9b31850c4f55864a892a0d33 100644 (file)
@@ -4,7 +4,7 @@ defmodule Pleroma.Repo.Migrations.CreateInstances do
   def change do
     create table(:instances) do
       add :host, :string
-      add :unreachable_since, :naive_datetime
+      add :unreachable_since, :naive_datetime_usec
 
       timestamps()
     end