2017-08-31 00:06:56 -04:00
|
|
|
class AddBadgeGroupings < ActiveRecord::Migration[4.2]
|
2014-07-16 03:06:28 -04:00
|
|
|
def change
|
|
|
|
create_table :badge_groupings do |t|
|
|
|
|
t.string :name, null: false
|
|
|
|
t.string :description, null: false
|
|
|
|
t.integer :position, null: false
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2014-07-16 03:06:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
add_column :badges, :badge_grouping_id, :integer
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|