创建一个没有 :id 列的 ActiveRecord 数据库表?

Create an ActiveRecord database table with no :id column?(创建一个没有 :id 列的 ActiveRecord 数据库表?)
本文介绍了创建一个没有 :id 列的 ActiveRecord 数据库表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是否可以在 Ruby on Rails 的 ActiveRecord 中创建和使用不包含 :id 列的数据库表.

Is it possible for me to create and use a database table that contains no :id column in ActiveRecord, Ruby on Rails.

我不只是想忽略 id 列,但我希望它绝对不存在.

I don't merely want to ignore the id column, but I wish it to be absolutely non-existent.

Table Example

:key_column                         :value_column
0cc175b9c0f1b6a831c399e269772661    0cc175b9c0f1b6a831c399e269772661
4a8a08f09d37b73795649038408b5f33    0d61f8370cad1d412f80b84d143e1257
92eb5ffee6ae2fec3ad71c777531578f    9d5ed678fe57bcca610140957afab571

任何更多信息(如 :id_column )都会破坏整个功能.

Any more info ( like an :id_column ) would break the whole feature.

我将如何在 Rails 中实现这样的功能?

How would I implement something like this in rails?

推荐答案

是的,看起来像这样:

create_table :my_table, id: false do |t|
  t.string :key_column
  t.string :value_column
end

只要确保包含

id: false

部分.

这篇关于创建一个没有 :id 列的 ActiveRecord 数据库表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)