This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/20140617183705_create_forumgroups.rb
2016-02-07 14:27:57 +01:00

11 lines
233 B
Ruby

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