This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/db/migrate/20120311201341_create_forums.rb
T
2013-02-26 07:31:35 +03:00

10 lines
212 B
Ruby

class CreateForums < ActiveRecord::Migration
def change
create_table :forums do |t|
t.integer :site_id, null: false
t.string :title, limit: 100, null: false
t.timestamps
end
end
end