0

我有一个从 Rails 1.2 移植到 2.3 的 Rails 应用程序。我也正在从 Ruby MRI 迁移到最新版本的 JRuby。

在现有的(Rails 1.2)应用程序中,我使用 mysql_bigint 插件来提供对 64 位整数作为主键的支持。

对于针对 MS SQL 2005 数据库服务器运行的新应用程序,我需要做同样的事情。

我不确定这里的代码段是否会有所帮助:using UUID as primary key in rails and polymorph Relations

任何想法从哪里开始?

TIA

戴夫

4

1 回答 1

0

将此添加到 config/environment.rb:

module JdbcSpec
  module MsSQL
    def modify_types(tp)
      super(tp)
      tp[:primary_key] = "bigint NOT NULL IDENTITY(1, 1) PRIMARY KEY"
      tp
    end
  end
end
于 2010-05-26T16:34:02.320 回答