1
vote
1answer
48 views

Rails doesn't seem to randomize primary key after deployment

I'm not exactly sure where the problem lies, but I get the following errors when trying to create a (generic) joke (model): ActiveRecord::RecordNotUnique (Mysql2::Error: Duplicate entry '2147483647' ...
0
votes
1answer
121 views

Rails update_attributes trying to insert id column

I have a model: class MyModel < ActiveRecord::Base has_many :other_things accepts_nested_attributes_for :other_things attr_accessible :other_things_attributes end class OtherThing < ...
6
votes
3answers
155 views

Rails has_many :through --> Should I keep a primary key column?

I have 'author' and 'book' tables, joined in a has_many :through table 'author_book' As far as I can tell, there's no purpose to an :id primary key field on the 'author_book' table...but before I ...
0
votes
1answer
65 views

Create a primary key for a table without one in migration

I've created table create_table :friendships , :force => true, :id => false do |t| t.integer :person_id t.integer :friend_id end Now i need to create id for that table. how can i do ...
0
votes
3answers
791 views

Rails : Define a unique primary key based on 2 columns

I would like to define a unique key for records based on 2 columns : 'id' and 'language' to let the user submits the following strings : id=1 language=en value=blabla english id=1 language=fr ...
1
vote
1answer
169 views

Add a primary key constraint in a RoR schema

In our web application our tables have a "GUID" ID held in an id field. By investigating the actual SQL code that is used to create the DB, we saw that our ID are actually not delayed as primary keys. ...
0
votes
0answers
146 views

How to use ActiveAdmin with a model having a boolean primary key?

I have a table 'series' having 2 primary keys: SERIES_ID :integer(4) not null APPROVED :boolean(1) not null In the model, I defined the primary keys and appropriate ...
0
votes
2answers
97 views

Rails 3 - association according own table column

I have these two tables: colors - id - name - name_code cars - id - manufacturer - color_code_name (in the columns colors.name_code and cars.color_code_name are the same values) I would like to ...
1
vote
1answer
193 views

How do I avoid the implicit sequence on the id field during rails migration

I am attempting to create a table in rails.. I need to be able to set the id's to data that's coming in because I have three (or more) sources, and their ID's must match. I'm setting the ID's ...
0
votes
0answers
163 views

find_or_initialize_by not setting primary key (:id)

I'm trying to compare data in my db with a list that I get from a service. I'm using find_or_initialize_by because I want to create the item if it doesn't exist and, if it does exist, I want to update ...
0
votes
2answers
253 views

changing model's id type from integer to decimal makes all entries try to be 0.0 (rails 3.2.1)

I'm a rails beginner (I think I have the basics down pretty well at this point), and I'm working on an app with a simple parent-child structure: Company => Client => Group => Order. The relevant DB ...
0
votes
1answer
66 views

has_many and belongs_to on other fields

I have two models that have a token field. They are called Ticket and Message. My ticket model looks like so. class Ticket < ActiveRecord::Base include UUIDHelper has_many :messages, ...
2
votes
2answers
93 views

Look Up Post Without Using Primary Key

To fetch a certain post in my controller you can type something like this in the URL http://0.0.0.0:3000/post/1 http://0.0.0.0:3000/post/2 http://0.0.0.0:3000/post/3 I am being asked to make it so ...
0
votes
1answer
64 views

activerecord's starting ids are high for RAILS_ENV=test

I've noticed that ids are in the high range for the test database of my Rails app. I'm wondering why this is the case. In development my ids start at 1.
3
votes
2answers
500 views

Default size of integer in Rails tables (MySQL)

When I run rails g model StripeCustomer user_id:integer customer_id:integer annotate I got # == Schema Information # Table name: stripe_customers # id :integer(4) not null, ...
0
votes
2answers
302 views

Ruby on rails, `rails generate` with primary_key not the default integer id

I have a model object called 'Problem' and I want to be able to call its the 'show' action using the URL /problems/PROBLEM_NAME. I think the way to go about this is to change it so the primary_key ...
3
votes
3answers
1k views

multicolumn primary keys in rails

I'm trying to migrate a desktop application to rails (also dealing with quite old fashioned existing database). The problem is that I don't have a unique ID in one column, but it's three columns of a ...
0
votes
1answer
125 views

Multiple primary keys in rails? — (rails beginner)

I have a table that holds data received from a thirdparty via an api and has the default id field that rails adds upon running the migration. I also have a primary key which I receive the from the ...
2
votes
2answers
174 views

Two tables with same key in Rails instead of has_one relationship

I am working on a Rail webapp. I have two models, User, which contains very basic information: id, username and password, and Profile, which includes profile for each user. (The main reason is to have ...
0
votes
1answer
152 views

insert column in with same value as primary key

is possible in Rails, to insert row and to assign value of id to specific column, e.g. if i have table which have ID and LINK columns where LINK is link to same table: ID | LINK 1 | 1 2 | 1 3 ...
0
votes
1answer
583 views

How to force primary key in ActiveRecord with PostgreSQL to jump start from a specific integer value?

From this: How to make a primary key start from 1000? It seems that I need to issue the SQL command: ALTER TABLE tbl AUTO_INCREMENT = 1000; But I only have been dealing with the database through the ...
1
vote
0answers
257 views

Rails - setting own primary key and deleting rails-set id causes problem

For my rails app, I used the scaffolding method to create the tables and the views and wanted to modify the employees model with setting an own primary key (with 'set_primary_key') in my model. I ...
1
vote
2answers
639 views

has_many :through with :primary_key on join table not working

In my Rails 3 project, I have a user model with a self referential join, through the follow model. I want to use this join table to find activity related to the followed user. I have almost ...
3
votes
2answers
3k views

rails3 bigint primary key

I would like to create a bigint (or string or whatever that is not int) typed primary key field under Rails 3. I have a given structure of data, for example: things ------ id bigint primary_key name ...
1
vote
1answer
155 views

Rails: HABTM Relationship with id as Primary Key, legacy DB

I have a legacy DB with join tables that have IDs as primary keys... Is there anything I can do? Thanks!
0
votes
1answer
528 views

Trouble on changing the default primary key for a database table

I am using Ruby on Rails 3 and I would like to change the default primary key for a SQL database table from id to account_id. The account_id statement and behavior should be the same of id ...
8
votes
3answers
2k views

How do I retroactively add a primary key to my table in rails?

I've created a table without a primary key (:id => false), but now it has come back to bite my ass. My app is already in production and I can't just drop it and recreate another one. Is there a ...
0
votes
1answer
66 views

Rails: Changing models IDs on the DB

For reasons of synchronizing between 2 different DBs used by different applications, I need to change the unique primary key IDs fields of some of my models. This is done in order to conform the ...
2
votes
2answers
400 views

when to set a table without primary key on a join table

Hey I am using the following tables. My table course_enrollments references the user_id and the course_id. Both columns combined are set unique. users course_enrollments courses Rails sets primary ...
1
vote
2answers
82 views

In rails, can you have an association between two models where the primary_key and foreign_key are of different data types?

Is the following kosher? schema.rb users id:int (autoincr.) uid:string <---------------- ... fb_friends id:int (autoincr.) uid:int <------------------- ...
1
vote
1answer
630 views

Rails won't use sequence for primary key?

For one reason or another the pre-existing Postgres schema I'm using with my Rails app doesn't have a default sequence set for a table's primary key, so I am required to query for it every time I want ...
0
votes
1answer
304 views

Id (autoincrementing integer) vs string employee ID as primary key - rails application

I'm writing my first rails app & want to get into some good habits from the start. The table in question is to be to hold employee data, one of the fields being the manager's ID. To reflect the ...
8
votes
3answers
6k views

Create join table with no primary key

I have two tables with a many to many relationship that I am using has_and_belongs_to_many to define the association. class Foo < ActiveRecord::Base ... has_and_belongs_to_many :bar ... end ...
1
vote
1answer
1k views

Auto increment a non-primary key field in Ruby on Rails

In a RoR migration, how do I auto increment a non-primary-key field? I'd like to do this in the db definition, and not in the model.
0
votes
1answer
440 views

Rails Issue with associations using primary_key+foreign_key options

I want to access a legacy database schema from Rails. I have one table NAGIOS_OBJECTS with a primary key OBJECT_ID and one table NAGIOS_HOST_CHECKS that refers to NAGIOS_OBJECTS with a column ...
3
votes
1answer
2k views

How to manage non-autoincrement primary key in Rails?

I have lots of situations where I'd like to have a non-autoincrement primary key when using Rails. Example: I have one-to-one relationship between A and B. B describes some specific features added to ...
3
votes
3answers
1k views

Rails modeling: converting HABTM to has_many :through

I'm doing maintenance work on an existing Rails site and am having some problems stemming from many-to-many associations. It looks like the site was initially built using has_and_belongs_to_many for ...
40
votes
10answers
27k views

Using Rails, how can I set my primary key to not be an integer-typed column?

I'm using Rails migrations to manage a database schema, and I'm creating a simple table where I'd like to use a non-integer value as the primary key (in particular, a string). To abstract away from my ...
9
votes
8answers
1k views

Why is it not good to have a primary key on a join table?

I was watching a screencast where the author said it is not good to have a primary key on a join table but didn't explain why. The join table in the example had two columns defined in a Rails ...
4
votes
7answers
1k views

Can one rely on the auto-incrementing primary key in your database?

In my present Rails application, I am resolving scheduling conflicts by sorting the models by the "created_at" field. However, I realized that when inserting multiple models from a form that allows ...
2
votes
6answers
4k views

How do I use a Rails ActiveRecord migration to insert a primary key into a MySQL database?

I need to create an AR migration for a table of image files. The images are being checked into the source tree, and should act like attachment_fu files. That being the case, I'm creating a hierarchy ...
4
votes
4answers
4k views

How do I define RESTful routes in Rails for a resource which has multiple key fields?

My User model has the usual id primary key, but it also has a unique login which can be used as an identifier. Therefore, I would like to define routes so that users can be accessed either by id or ...