Sha256: 1abf45e8a2ed6119052a37a2db48963d7bcc2ed5afc609c84294a3bf866df97e
Contents?: true
Size: 236 Bytes
Versions: 160
Compression:
Stored size: 236 Bytes
Contents
class CreateComments < ActiveRecord::Migration def change create_table :comments do |t| t.string :commenter t.text :body t.references :post t.timestamps end add_index :comments, :post_id end end
Version data entries
160 entries across 121 versions & 19 rubygems