mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Don't allow profile bios longer than 3k chars
This commit is contained in:
6
db/migrate/20140908191429_trim_profile_length.rb
Normal file
6
db/migrate/20140908191429_trim_profile_length.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
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
|
||||
Reference in New Issue
Block a user