在 Rails 中添加 utf-8 和 InnoDB 指令时出现迁移语法错误
我正在尝试创建此 Rails 迁移
class CreateFormats < ActiveRecord::Migration
def self.up
create_table (:formats , :options => 'ENGINE=InnoDB DEFAULT CHARSET=utf8' ) do |t|
t.name
t.description
t.company
t.timestamps
end
end
def self.down
drop_table :formats
end
end
,并且在执行过程中遇到如下错误:
语法错误,意外的“,”,期待“)” create_table (:formats , :options => 'ENGINE=InnoDB D... ^ 语法错误,意外的“)”,期待关键字_结束 ...=InnoDB 默认字符集=utf8' ) do |t| ... ^
语法错误,意外的 keywords_end,期望 $end
知道为什么会发生这种情况吗?我找不到任何语法问题..很可能是因为我是 Rails 新手:)
I am trying to create this rails migration
class CreateFormats < ActiveRecord::Migration
def self.up
create_table (:formats , :options => 'ENGINE=InnoDB DEFAULT CHARSET=utf8' ) do |t|
t.name
t.description
t.company
t.timestamps
end
end
def self.down
drop_table :formats
end
end
And I get errors during execution that look like this:
syntax error, unexpected ',', expecting ')'
create_table (:formats , :options => 'ENGINE=InnoDB D...
^
syntax error, unexpected ')', expecting keyword_end
...=InnoDB DEFAULT CHARSET=utf8' ) do |t|
... ^
syntax error, unexpected keyword_end, expecting $end
Any idea why this happened? I can't find any problems with my syntax..most likely because I am new to Rails :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的语法不正确:
应该是
:没有空格。否则,您只需将
:formats
与:options => 分组即可。 ...
作为函数的第一个参数。您可能还需要更改
为类似的内容
Your syntax is incorrect:
should be
i.e: without the space. Otherwise you are simply grouping
:formats
with:options => ...
as the first argument to the function.You probably also need to change
to something like