DEV: Only lock rows that need to change in migration (#18319)
This commit is contained in:
parent
61f5c8716d
commit
e3d7253199
|
@ -2,8 +2,8 @@
|
|||
|
||||
class EnforceUserProfileMaxLimits < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
execute "UPDATE user_profiles SET location = LEFT(location, 3000) WHERE location IS NOT NULL"
|
||||
execute "UPDATE user_profiles SET website = LEFT(website, 3000) WHERE website IS NOT NULL"
|
||||
execute "UPDATE user_profiles SET location = LEFT(location, 3000) WHERE location IS NOT NULL AND LENGTH(location) > 3000"
|
||||
execute "UPDATE user_profiles SET website = LEFT(website, 3000) WHERE website IS NOT NULL AND LENGTH(website) > 3000"
|
||||
|
||||
change_column :user_profiles, :location, :string, limit: 3000
|
||||
change_column :user_profiles, :website, :string, limit: 3000
|
||||
|
|
Loading…
Reference in New Issue