mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-13 03:01:12 +00:00
98cb255d12
OTP builds to 1.15
Changelog entry
Ensure policies are fully loaded
Fix :warn
use main branch for linkify
Fix warn in tests
Migrations for phoenix 1.17
Revert "Migrations for phoenix 1.17"
This reverts commit 6a3b2f15b7
.
Oban upgrade
Add default empty whitelist
mix format
limit test to amd64
OTP 26 tests for 1.15
use OTP_VERSION tag
baka
just 1.15
Massive deps update
Update locale, deps
Mix format
shell????
multiline???
?
max cases 1
use assert_recieve
don't put_env in async tests
don't async conn/fs tests
mix format
FIx some uploader issues
Fix tests
13 lines
263 B
Elixir
13 lines
263 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateUserTrigramIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists(
|
|
index(:users, ["(nickname || name) gist_trgm_ops"],
|
|
name: :users_trigram_index,
|
|
using: :gist
|
|
)
|
|
)
|
|
end
|
|
end
|