0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 02:19:55 +08:00
discourse/db/migrate/20140716063802_add_badge_groupings.rb
2023-01-09 11:59:41 +00:00

14 lines
357 B
Ruby
Vendored

# frozen_string_literal: true
class AddBadgeGroupings < ActiveRecord::Migration[4.2]
def change
create_table :badge_groupings do |t|
t.string :name, null: false
t.string :description, null: false
t.integer :position, null: false
t.timestamps null: false
end
add_column :badges, :badge_grouping_id, :integer
end
end