mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 23:20:44 +01:00
Fix FixAccountsUniqueIndex migration (#8212)
This commit is contained in:
parent
f6ad5edbaa
commit
a16d41e9fb
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@ class FixAccountsUniqueIndex < ActiveRecord::Migration[5.2]
|
|||
def local?
|
||||
domain.nil?
|
||||
end
|
||||
|
||||
def acct
|
||||
local? ? username : "#{username}@#{domain}"
|
||||
end
|
||||
end
|
||||
|
||||
disable_ddl_transaction!
|
||||
|
|
Loading…
Reference in a new issue