在生成模型、查看器或控制器之前,我已经创建了如下迁移文件
class Papaers < ActiveRecord::Migration
def self.up
create_table :papers do |t|
t.integer :unit_id, :null=>false
t.integer :document_id, :null=>false
t.timestamps
end
end
def self.down
drop_table :papers
end
end
这运行良好,它创建了表。但现在我想为这个表创建一个模型。在运行迁移文件后,rails 中有没有办法创建模型?我看不到在模型中的论文下生成的任何模型。