forked from AkkomaGang/akkoma
Fix migration timestamp type
This commit is contained in:
parent
9a7b817c9a
commit
19a19bdd81
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,10 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
defmodule Pleroma.Repo do
|
||||
use Ecto.Repo, otp_app: :pleroma, adapter: Ecto.Adapters.Postgres
|
||||
use Ecto.Repo,
|
||||
otp_app: :pleroma,
|
||||
adapter: Ecto.Adapters.Postgres,
|
||||
migration_timestamps: [type: :naive_datetime_usec]
|
||||
|
||||
@doc """
|
||||
Dynamically loads the repository url from the
|
||||
|
|
Loading…
Reference in a new issue