Sha256: bffa8e907febbaa7a7561c61c756d3d7b7d704636a084726c890ada8bc7c51c5
Contents?: true
Size: 248 Bytes
Versions: 39
Compression:
Stored size: 248 Bytes
Contents
class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.text :body t.string :author t.integer :post_id t.timestamps end end def self.down drop_table :comments end end
Version data entries
39 entries across 39 versions & 4 rubygems