Sha256: 02b544ee7da88f46103c4188d1efd2c303c4e5fdbac4bafd67738cd987ecc7b6
Contents?: true
Size: 258 Bytes
Versions: 4
Compression:
Stored size: 258 Bytes
Contents
class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.integer :user_id t.integer :blog_post_id t.text :comment t.timestamps end end def self.down drop_table :comments end end
Version data entries
4 entries across 3 versions & 1 rubygems