创建一个具有如下迁移的简单模型将破坏rake db:migrate任务:
class CreateProducts < ActiveRecord::Migration
def change
create_table :products do |t|
t.string :title
t.float :price, :default => "0.00"
t.string :currency, :default => "€"
t.timestamps
end
end
end
与EUR
交换欧元符号会暂时解决问题,但总的来说,我很想了解如何使用€
作为默认值。
干杯
答案 0 :(得分:3)
将它放在迁移文件的第一行:
# encoding: utf-8