1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 03:39:34 +00:00
discourse/db/migrate/20160206210202_remove_invalid_websites.rb

6 lines
162 B
Ruby
Raw Normal View History

class RemoveInvalidWebsites < ActiveRecord::Migration[4.2]
def change
execute "UPDATE user_profiles SET website = NULL WHERE website = 'http://'"
end
end