I have completed first two steps in ‘Show a Tag’ section. But when I try to evaluate 3rd step, it is showing error message. ‘Unknown attribute tag_id’.
Here is my code for show.html.erb
<div class="header">
<div class="container">
<img src="http://s3.amazonaws.com/codecademy-content/courses/learn-rails/img/logo-1tm.svg" width="80">
<h1>BokenjiKan</h1>
</div>
</div>
<div class="tag">
<div class="container">
<h2 class="tag-title"><%[email protected]%></h2>
<div class="cards row">
<%[email protected] do |d| %>
<div class="card col-xs-4">
<img src="<%=d.image%>">
<h2><%=d.name%></h2>
<p><%=d.description%></p>
</div>
</div>
</div>
</div>