这是我的架构文件..
ActiveRecord::Schema.define(:version => 20120505115340) do
create_table "clients", :force => true do |t|
t.string "name"
t.string "detail"
t.string "more_detail"
t.string "more_details"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
create_table "jobs", :force => true do |t|
t.string "name"
t.integer "number"
t.string "responsible"
t.string "monthly"
t.string "quarterly"
t.string "other"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
end
这是我的迁移文件的..
class CreateClients < ActiveRecord::Migration
def change
create_table :clients do |t|
t.string :name
t.string :detail
t.string :more_detail
t.string :more_details
t.timestamps
end
end
end
class CreateJobs < ActiveRecord::Migration
def change
create_table :jobs do |t|
t.string :name
t.integer :number
t.string :responsible
t.string :monthly
t.string :quarterly
t.string :other
t.timestamps
end
end
end
在我的视图文件中,我对其进行了设置,以便将其拉出client.name
并显示给用户<%= link_to client.name, client_path(client) %>
。
但是,当我创建一个新条目时,我返回的所有内容都不是/clients/1
我在表单中指定的名称。
当我尝试迁移数据库时,什么也没有发生,然后当我尝试删除他的数据库以重新开始时,它告诉我它甚至确实存在。