Rake not able to migrate

2019-03-05 16:35发布

C:\Users\MEGHA\bbbb>rake db:migrate
rake aborted!
SyntaxError: C:/Users/MEGHA/bbbb/db/migrate/20140402130040_create_comments.rb:4: syntax error, unexpected tIDENTIFIER, expecting keyword_end
C:65535:in `disable_ddl_transaction'
Tasks: TOP => db:migrate
(See full trace by running task with --trace)

20140402130040_create_comments.rb

class CreateComments < ActiveRecord::Migration
  def change
    create_table :comments do |t|
      t.string :post_id=integer
      t.text :body

      t.timestamps
    end
  end
end

2条回答
▲ chillily
2楼-- · 2019-03-05 16:36

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

查看更多
Deceive 欺骗
3楼-- · 2019-03-05 16:37

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
查看更多
登录 后发表回答