2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

Add badge groupings table

This commit is contained in:
Sam 2014-07-16 17:06:28 +10:00
parent 5ad519e2bc
commit 986747bfc4

View file

@ -0,0 +1,13 @@
class AddBadgeGroupings < ActiveRecord::Migration
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
end
add_column :badges, :badge_grouping_id, :integer
end
end