如何在 Rails 迁移中使用 UTF8 字符?

发布于 2024-12-21 17:40:00 字数 410 浏览 2 评论 0原文

使用如下所示的迁移创建一个简单的模型将破坏 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 交换欧元符号可以暂时解决问题,但总的来说,我很想了解如何使用 作为默认值。

干杯

creating a simple model with a migration like the following will break the rake db:migrate tasks:

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

Exchanging the Euro sign with EUR fixes the issue temporary but in general I'd love to understand how I could work with as default value there.

Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔嚣张 2024-12-28 17:40:00

将其放在迁移文件的第一行:

# encoding: utf-8

Put this on the first line of your migration file:

# encoding: utf-8
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文