How can I change the (default) type for ActiveRecord's IDs? int is not long enough, I would prefer long. I was surprised that there is no :long for the migrations - does one just use some decimal?

link|improve this question

feedback

6 Answers

up vote 10 down vote accepted

Credits to http://moeffju.net/blog/using-bigint-columns-in-rails-migrations

class CreateDemo < ActiveRecord::Migration
  def self.up
    create_table :demo, :id => false do |t|
      t.integer :id, :limit => 8
    end
  end
end
  • See the option :id => false which disables the automatic creation of the id field
  • The t.integer :id, :limit => 8 line will produce a 64 bit integer field
link|improve this answer
Thank you, perfect!! Works in Rails 2.3.11, as well. – nessur Dec 1 '11 at 19:39
Unfortunately this doesn't create the id column as primary key etc. – gravitystorm Jan 16 at 13:42
1  
True. I did that with raw SQL. I've read the soruce, and I did not find any option to do that intelligently (3.0.7) . That's a shame. But hey! 3.1.0 is out for a while! Good luck! – Notinlist Jan 16 at 14:12
feedback

To set the default primary key column type, the migration files are not the place to mess with.

Instead, just stick this at the bottom of your config/environment.rb

ActiveRecord::ConnectionAdapters::MysqlAdapter::NATIVE_DATABASE_TYPES[:primary_key] = "BIGINT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY"

And all your tables should be created with the intended column type for id:

+--------------+---------------------+------+-----+---------+----------------+
| Field        | Type                | Null | Key | Default | Extra          |
+--------------+---------------------+------+-----+---------+----------------+
| id           | bigint(20) unsigned | NO   | PRI | NULL    | auto_increment | 

After you've done what you've set out to do... the next question is probably "How do I make my foreign key columns the same column type?" since it does not make sense to have primary key people.id as bigint(20) unsigned, and person_id be int(11) or anything else?

For those columns, you can refer to the other suggestions, e.g.

t.column :author_id, 'BIGINT UNSIGNED'
t.integer :author_id, :limit => 8

UPDATE: @Notinlist, to use arbitrary column for primary key on arbitrary tables you need to do the create_table-change_column dance:

create_table(:users) do |t|
  # column definitions here..
end
change_column :users, :id, :float # or some other column type

e.g. if I wanted guid instead of auto-increment integers,

create_table(:users, :primary_key => 'guid') do |t|
  # column definitions here..
end
change_column :users, :guid, :string, :limit => 36
link|improve this answer
1  
This is a useful approach, but is there any way to make this database-independent or is that just the price one pays for this need? – brokenbeatnik Feb 2 '11 at 1:21
probably the latter. – choonkeat Feb 7 '11 at 1:02
What if I don't want to use bigint for all my tables, just for some? – Notinlist May 4 '11 at 8:32
then 1) you should leave the config/environment.rb alone. 2) issue a "change_column" after your "create_table" to use bigint (see the last snippet) – choonkeat Jun 28 '11 at 7:57
Looks like :primary_key => 'guid' then changing to string won't work. If I'm understanding correctly, a reference to primary_key in a migration, by definition, creates an auto-incrementing field, so it wouldn't work on strings. See Rudd Zwolinski's answer here. – Mark Berry Oct 11 '11 at 0:52
show 2 more comments
feedback

According to the Rails API documentation, the possible options for type are:

:string
:text
:integer
:float
:decimal
:datetime
:timestamp
:time
:date
:binary
:boolean

You can use :decimal, or you can execute a command directly if you need to:

class MyMigration
  def self.up
    execute "ALTER TABLE my_table ADD id LONG"
  end
end

As wappos pointed out, you can use auxiliary options like :limit to tell ActiveRecord how large you want the column to be. So you would use the :int column with a larger :limit.

link|improve this answer
"As wappos pointed out, you can use auxiliary options like :limit to tell ActiveRecord how large you want the column to be. So you would use the :int column with a larger :limit." I don't think that will work if what he wants is larger than integer will hold. Setting a larger limit won't change the maximum size. – Luke Francl Jul 1 '09 at 6:01
in fact :primary_key does not have the :limit option, so this does not work for the primary key column. – Björn Jul 1 '09 at 16:05
I just looked it up in the Rails docs and if use :limit => 8 on an integer column you will get a bigint. I did not realize that. – Luke Francl Jul 2 '09 at 7:30
feedback

This is hard to set for the primary key with migrations because Rails puts it in automatically.

You can change any column later like this:

change_column :foobars, :something_id, 'bigint'

You can specify non-primary IDs as custom types in your initial migration like this:

create_table :tweets do |t|
  t.column :twitter_id, 'bigint'
  t.column :twitter_in_reply_to_status_id, 'bigint'
end

Where I have "bigint" you can put any text that your database would use for the database column type you want to use (e.g., "unsigned long").

If you need your id column to be a bigint, the easiest way to do it would be to create the table, then change the column in the same migration with change_column.

With PostgreSQL and SQLite, schema changes are atomic so this won't leave your database in a weird state if the migration fails. With MySQL you need to be more careful.

link|improve this answer
Thanks - it seems for a "normal" column using limit => 8 would do the trick, but for the primary_key this does not work. For MySQL I have now used custom SQL with execute. Would prefer change_column, but wouldn't that have the same problem as initial creation, namely that :limit => 8 would not be supported for primary key columns? – Björn Jul 1 '09 at 16:08
1  
No, you can use change_column with the primary key, like this: change_column :foobars, :id, "bigint". So you'd create the table and then immediately change the ID column to be a bigint. I still don't think using :limit with an int column is going to work (with MySQL anyway) because int's max size is 2**31-1 no matter what. – Luke Francl Jul 1 '09 at 23:45
1  
OK, I just looked it up in the Rails docs and if you do t.column :foobar, :int, :limit => 8 you will get a bigint. – Luke Francl Jul 2 '09 at 7:29
feedback

Rails 3, MySQL:

t.column :foobar, :int, :limit => 8

Does not give me a bigint, only an int. However,

t.column :twitter_id, 'bigint'

works fine. (Although it does tie me to MySQL.)

link|improve this answer
'bigint' as a column type should also work on PostgreSQL. I used it the other day for an int column of size 8. – bjeanes Jan 27 '11 at 7:27
Cool! MySQL and PostgreSQL are the only ones that seem at all relevant to me. Actually, they're now owned by the same org I hear.. – Duke Feb 17 '11 at 5:48
MySQL is now owned by Oracle, but this is not the case for PostgreSQL, which probably means that it will thrive more :) – m33lky Dec 23 '11 at 0:22
feedback

can't you just specify your index is type bigint?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.