Я получаю следующее сообщение об ошибке в представлении: http://localhost:3000/microposts/2 SQLite3 :: SQLException: нет такого столбца: answers.micropost_id: ВЫБРАТЬ «ответы». * ОТ «ответы» ГДЕ («ответы» .micropost_id= 2)
Вот мои миграции:
|БД> миграция> создать микросообщение |
class CreateMicroposts < ActiveRecord::Migration
def self.up
create_table :microposts do |t|
t.string :content
t.timestamps
end
end
def self.down
drop_table :microposts
end
end
|db> миграция> создать ответ |
class CreateAnswers < ActiveRecord::Migration
def self.up
create_table :answers do |t|
t.string :location
t.text :body
t.references :micropost
t.integer :micropost_id
t.timestamps
end
end
def self.down
drop_table :answers
end
end
Контроллер ответов:
def create
@answer = Answer.new(params[:answer])
@answer.micropost = @micropost; @answer.save && @micropost.save
redirect_to micropost_path(@micropost)
respond_to do |format|
if @answer.save
format.html { redirect_to(@answer, :notice => 'Answer was successfully created.') }
format.xml { render :xml => @answer, :status => :created, :location => @answer }
else
format.html { render :action => "new" }
format.xml { render :xml => @answer.errors, :status => :unprocessable_entity }
end
end
end
и просмотр:
<p id="notice"><%= notice %></p>
<p>
<b>Content:</b>
<%= @micropost.content %>
<h2>Location Answers:</h2>
<% @micropost.answers.each do |answer| %>
<p>
<b>Answer:</b>
<%= answer.body%>
</p>
<%end %>
<h2> Answer a location:</h2>
<%= form_for ([@micropost, @micropost.answers.build]) do |f| %>
<div class="field">
<%= f.label :location %><br />
<%= f.text_field :location %>
</div>
<div class="field">
<%= f.label :body %><br/>
<%= f.text_area :body %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
</p>
<%= link_to 'Edit', edit_micropost_path(@micropost) %> |
<%= link_to 'Back', microposts_path %>
Я не могу найти, что не так в этом приложении,- Я попытался откатить и перенести снова, это не сработало.- Я попытался вручную добавить «t.integer: micropost_id» в миграцию, которая не работала. В моей модели есть ассоциация «own_to» и «has_many», и я добавил «ресурсы: микросообщения делают ресурсы: ответы заканчиваются в моей конфигурации.рб файл.