Class: CommentBoxCreateComment

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/active_record/templates/migration.rb

Instance Method Summary collapse

Instance Method Details

#downObject



12
13
14
# File 'lib/generators/active_record/templates/migration.rb', line 12

def down
  drop_table :comments
end

#upObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/active_record/templates/migration.rb', line 2

def up
  create_table :comments do |t|
    t.string :author
    t.text :text
    t.string :likes

    t.timestamps null: false
  end
end