summaryrefslogtreecommitdiff
path: root/db/migrate/20140617183705_create_forumgroups.rb
blob: a31dbb5966f55fa4e9a9b74d00494136a23dc98f (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateForumgroups < ActiveRecord::Migration
  def change
    create_table :forumgroups do |t|
      t.string     :name
      t.integer    :position

      t.references :role_read
      t.references :role_write
    end
  end
end