Class: CommentBoxCreateComment
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CommentBoxCreateComment
- Defined in:
- lib/generators/active_record/templates/migration.rb
Instance Method Summary collapse
Instance Method Details
#down ⇒ Object
12 13 14 |
# File 'lib/generators/active_record/templates/migration.rb', line 12 def down drop_table :comments end |
#up ⇒ Object
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. null: false end end |