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/20130802051521_create_forums.rb
2013-08-02 07:55:32 +02:00

12 lines
208 B
Ruby

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