我想修改以下代码,以便能够仅将文件扩展名写入数据库。现在我阅读了file_content_type,但我只需要知道扩展名(扩展名可以更改对我来说并不重要)并将其放入数据库中。upload_file_name 已经有一个扩展名,但我需要提取它并将其作为新行放在同一个数据库表中。
ActiveRecord::Schema.define(:version => 20120731045929) do
create_table "uploads", :force => true do |t|
t.string "upload_file_name"
t.string "upload_content_type"
t.string "user"
t.integer "upload_file_size"
t.datetime "upload_updated_at"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
结尾
并且有可能以某种方式保存没有扩展名的文件名?