discourse/db/migrate/20140716063802_add_badge_gr...

14 lines
327 B
Ruby
Raw Normal View History

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