如何使用 activerecord-jdbc 在 Rails 2.3 中使用 bigint 数据类型作为主键

发布于 2024-09-02 15:21:59 字数 409 浏览 5 评论 0原文

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

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

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

我不确定这里的代码片段是否有帮助: 使用 UUID 作为 Rails 和多态关系中的主键

有什么想法从哪里开始吗?

蒂亚

·戴夫

I have a Rails app that I'm porting from Rails 1.2 to 2.3. I'm also moving from the Ruby MRI to the latest version of JRuby as well.

In the existing (Rails 1.2) app I use the mysql_bigint plugin to provide support for 64-bit ints as primary keys.

I need to to the same thing for the new application running against a MS SQL 2005 database server.

I'm not sure if the snippet here would help: using UUID as primary key in rails and polymorph relationships

Any ideas where to start?

TIA

Dave

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

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

发布评论

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

评论(1

如歌彻婉言 2024-09-09 15:21:59

将其添加到 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

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