C:\\Users\\MEGHA\\bbbb>rake db:migrate rake aborted! SyntaxError: C:/Users/MEGHA/bbbb/db/migrate/20140402130040_create_comments.rb:4: syntax error, unexpected tIDENTI
In your migration you have used
:post_id = integer
Instead it needs to be as below:
class CreateComments < ActiveRecord::Migration def change
create_table :comments do |t| t.integer :post_id t.text :body t.timestamps end end end
create_table :comments do |t| t.integer :post_id t.text :body t.timestamps end end
end