我对 ruby on rails 很陌生,过去几天一直在尝试使用它。基本上试图:创建一个带有固定列的空表 - Ruby on Rails
我创建了一个这样的模型:
rails g model table
rails g migration table
我的 tables.rb 文件如下所示:
class Tables < ActiveRecord::Migration
def change
add_column :table, :firstname, :string
add_column :table, :lastname, :string
end
end
(希望我创建的列没问题)
然后我运行:
rake db:migrate RAILS_ENV=development
但似乎得到一个错误 no such table: table (但我以为我创建了它?)
还有什么是我可以用来在 html.erb 文件中查看 localhost:3000 上的表的好视图?