假设我有以下列的表格:
class CreatePosts < ActiveRecord::Migration
def change
drop_table :posts
create_table :posts do |t|
t.string :First_Name
t.string :Last_Name
t.string :Company
t.timestamps
end
end
end
我一直在寻找诸如faker,Randexp,foregery之类的宝石。但是数据究竟是如何导入数据库的,到目前为止,我只玩过通过表单进入数据库的东西。
我假设它是通过控制器完成的:
def create
@post = Post.new(post_params)
@post.save
redirect_to @post
end
但不确定如何准确,有任何示例或提示可以指导我完成此操作吗?谢谢