discourse/db/migrate/20140908191429_trim_profile...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
221 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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