mirror of
https://github.com/discourse/discourse.git
synced 2026-09-05 04:40:41 -05:00
Add badge groupings table
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user