Sha256: 9cd3afa62e4fa231bcc1116dc877a62ac1aea8b334e6739b8f7008ee5800d342
Contents?: true
Size: 295 Bytes
Versions: 13
Compression:
Stored size: 295 Bytes
Contents
class CreateAlmanacComments < ActiveRecord::Migration def up create_table :almanac_comments do |t| t.text :body t.string :author_email t.string :author_name t.references :post t.timestamps end end def down drop_table :almanac_comments end end
Version data entries
13 entries across 13 versions & 1 rubygems