无法在postgresql / rails中将列名设置为数字或符号

时间:2015-07-16 22:00:45

标签: ruby-on-rails postgresql

我需要在桌面锦标赛中添加列。我的列都对应于特定的排名,并且是布尔类型的。 我在现实生活中的排名如下:40,30 / 5,30 / 4,30 / 3等 但我不认为我可以在rails中写这样的迁移:

class AddRankingsToTournaments < ActiveRecord::Migration
  def change 
    add_column :tournaments, :40, :boolean
    add_column :tournaments, :30/5, :boolean
    add_column :tournaments, :30/3, :boolean
  end
end

这在rails和postgresql中不是有效的列名吗? 将我的列名重命名为正确且易于识别的最佳方法是什么?

0 个答案:

没有答案