运行迁移时 UTF-8 中的字节序列无效
在 ruby on Rails(版本 3.1)中使用 rake 运行迁移时,出现 invalid byte order in UTF-8
错误。
我的迁移代码可以在下面找到。
谢谢!
class ChangePhoneToString < ActiveRecord::Migration
def up
remove_column :restaurants, :phone
remove_column :restaurants, :price
add_column :restaurants, :phone, :string
add_column :restaurants, :price, :string
end
def down
remove_column :restaurants, :phone
remove_column :restaurants, :price
add_column :restaurants, :phone, :integer
add_column :restaurants, :price, :integer
end
end
I get an invalid byte sequence in UTF-8
error when running a migration with rake in ruby on rails (version 3.1).
The code for my migration can be found below.
Thanks!
class ChangePhoneToString < ActiveRecord::Migration
def up
remove_column :restaurants, :phone
remove_column :restaurants, :price
add_column :restaurants, :phone, :string
add_column :restaurants, :price, :string
end
def down
remove_column :restaurants, :phone
remove_column :restaurants, :price
add_column :restaurants, :phone, :integer
add_column :restaurants, :price, :integer
end
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rails 3.1 中的迁移文件略有变化。
目前 Rails 3.1 不支持remove_column
请在此处阅读 rail 3.1 迁移文档
There is slight change in the migration file in rails 3.1.
Currently remove_column is not supported in rails 3.1
Please read the rail 3.1 migration documentation here