Class: CreateComments

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/likelion/templates/160425/create_comments.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/likelion/templates/160425/create_comments.rb', line 2

def change
  create_table :comments do |t|
    t.string :content
    t.integer :post_id

    t.timestamps null: false
  end
end