Rails Model.create SQLite3 :: SQLException

时间:2012-07-10 20:19:40

标签: ruby-on-rails sqlite migration

我是Rails的初学者,我在使用Rails的迁移将数据插入数据库时​​遇到了麻烦。

class Actions < ActiveRecord::Migration
  def up
    create_table :actions do |t|
      t.integer :channel_id
      t.string :name
      t.text :description
      t.integer :weight

      t.timestamps
    end

    add_index :actions, :channel_id

    Actions.create :name => 'name', :description => '', :weight => 1, :channel_id => 1
  end

运行此代码会导致:

==  Actions: migrating ========================================================
-- create_table(:actions)
   -> 0.0076s
-- add_index(:actions, :channel_id)
   -> 0.0036s
-- create({:name=>"name", :description=>"", :weight=>1, :channel_id=>1})
rake aborted!
An error has occurred, this and all later migrations canceled:

SQLite3::SQLException: unrecognized token: "{": {:name=>"name", :description=>"", :weight=>1, :channel_id=>1}

行动模型:

class Actions < ActiveRecord::Base
  belongs_to :channels
  attr_accessible :name, :description, :weight, :channel_id
end

我不知道大括号的来源以及它们导致异常的原因。谁能帮我解决这个问题?

1 个答案:

答案 0 :(得分:3)

哦,您的迁移类名称似乎与您尝试访问的模型的名称相同(Actions)。因此,而不是模型类,将在迁移类上调用create方法,它可能会尝试使用您的哈希创建表,或者其他的东西。这就是你收到错误信息的原因。

为了保持一致性,重命名您的迁移类(以及它的文件),它应该运行良好:

class CreateActions < ActiveRecord::Migration