error :
SQLite3::SQLException: no such column: articles.slug: SELECT "articles".* FROM "articles" WHERE "articles"."slug" = '33' ORDER BY "articles"."id" ASC LIMIT 1
code :
def show
@article = Article.friendly.find(params[:id])
@category = Category.find(@article.category_id)
@comment = Comment.new
end