Skip to content
Extraits de code Groupes Projets
Valider 14a0e9c5 rédigé par Justin Thomas's avatar Justin Thomas
Parcourir les fichiers

change concat() to || for pgSQL

parent 125be418
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -2,7 +2,7 @@ class RemoveInvitationEmailFromUsers < ActiveRecord::Migration ...@@ -2,7 +2,7 @@ class RemoveInvitationEmailFromUsers < ActiveRecord::Migration
def self.up def self.up
execute <<-SQL execute <<-SQL
UPDATE users UPDATE users
SET email = concat('invitemail_', id, '@example.org') SET email = 'invitemail_' || id || '@example.org'
WHERE invitation_token IS NOT NULL WHERE invitation_token IS NOT NULL
SQL SQL
end end
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter