mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:37:06 +08:00
7 lines
190 B
Ruby
7 lines
190 B
Ruby
class TrimProfileLength < ActiveRecord::Migration[4.2]
|
|
def change
|
|
# In case any profiles exceed 3000 chars
|
|
execute "UPDATE user_profiles SET bio_raw=LEFT(bio_raw, 3000)"
|
|
end
|
|
end
|