mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
7 lines
185 B
Ruby
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
|