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
instead:
class CreateComments < ActiveRecord::Migration
def change
create_table :comments do |t|
t.string :post_id=integer #<= this
t.text :body
t.timestamps
end
end
end
use
class CreateComments < ActiveRecord::Migration
def change
create_table :comments do |t|
t.integer :post_id
t.text :body
t.timestamps
end
end
end
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