Class: CreateReplies

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/likelion/templates/160427/create_replies.rb,
lib/generators/likelion/templates/160502/create_replies.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



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

def change
  create_table :replies do |t|
    t.text :content
    t.integer :post_id

    t.timestamps null: false
  end
end