mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 04:01:29 -05:00
Add badge groupings table
This commit is contained in:
parent
5ad519e2bc
commit
986747bfc4
1 changed files with 13 additions and 0 deletions
13
db/migrate/20140716063802_add_badge_groupings.rb
Normal file
13
db/migrate/20140716063802_add_badge_groupings.rb
Normal 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
|
Loading…
Reference in a new issue