来源:博客园 链接 http://www.cnblogs.com/yank/archive/2009/11/01/attachment.html ? ? ROR使用attachment_fu上传附件,很方便,但是配置需要研究。 http://github.com/technoweenie/attachment_fu
migration:
??def?self.up
????create_table?:attachments,:force?=>?true?do?|t|
??????t.string?:filename,:default=>""
??????t.string?:content_type,:defaut=>""
??????t.integer?:size,:default=>0
??????t.string?:org_filename,:default=>""
??????t.timestamps
????end
??end
??def?self.down
????drop_table?:attachments
??end
end