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/00000000000006_create_forums.rb
2013-10-16 00:51:50 +02:00

14 lines
249 B
Ruby

class CreateForums < ActiveRecord::Migration
def change
create_table :forums do |t|
t.string :name
t.integer :position
t.references :role_read
t.references :role_write
t.references :forumgroup
end
end
end