0

我在 Heroku 上运行 Rails 应用程序时遇到问题。

我根据Michael Hartl编写的 Rails 教程制作了这个应用程序。当我加载页面时,我得到:

我们很抱歉,但有些不对劲。

基本信息日志:

ActionView::Template::Error :Error (PG::Error :Error: syntax error at or near ")"
count_column FROM "microposts" 

我在views/pages/home.html.erb中遇到的麻烦。我的其他页面没问题..可能在部分布局或页面中,。我不知道。点击这里这是我的申请

在这个应用程序中,作为根路径的页面主页成功出现,但如果我登录,页面主页出现 heroku 消息

我们很抱歉,但有些不对劲

视图/页面/home.html.erb

<% if signed_in? %>`
<table class="profile" summary="For signed-in users">
<tr>
<td class="sidebar round">
<h1 class="micropost">What's up?</h1>
<%= render 'shared/micropost_form' %>
<%= render 'shared/feed' %>
</td>
<td class="main">
<%= render 'shared/user_info' %>
</td>
</tr>
</table>
<% else %>
<h3>Welcome to rails App by example</h3>
<p>Find out your friend, happening, connect to people or some the activities, organization and more</p>
<%= link_to "Sign up now!", 'signup', :class => "signup_button round" %>
<% end %>

我在跑步

heroku 日志 -t

ActionView::Template::Error :Error (PG::Error :Error: relation "users" doest not exist
LINE 1: SELECT "users".* FROM "users" WHERE "users"."auth_token"=...

之前谢谢

4

1 回答 1

2

似乎您没有在 heroku 上运行迁移,请尝试:

heroku run rake db:migrate

有用的链接

于 2013-02-20T12:55:48.647 回答