Browse Source

Fix FixAccountsUniqueIndex migration (#8212)

master
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
4f24dc31dc
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      db/migrate/20180528141303_fix_accounts_unique_index.rb

+ 4
- 0
db/migrate/20180528141303_fix_accounts_unique_index.rb View File

@@ -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…
Cancel
Save