discourse/db/migrate/20140718041445_set_default_...

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

9 lines
282 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SetDefaultBadgeGrouping < ActiveRecord::Migration[4.2]
def change
2014-07-18 01:55:42 -04:00
execute 'UPDATE badges SET badge_grouping_id = 5 WHERE badge_grouping_id IS NULL'
change_column :badges, :badge_grouping_id, :integer, null: false, default: 5
end
end