This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20120311201341_create_forums.rb

10 lines
229 B
Ruby

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