1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20140908191429_trim_profile_length.rb

7 lines
185 B
Ruby

class TrimProfileLength < ActiveRecord::Migration
def change
# In case any profiles exceed 3000 chars
execute "UPDATE user_profiles SET bio_raw=LEFT(bio_raw, 3000)"
end
end