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?
|
feedback
|
|
Credits to http://moeffju.net/blog/using-bigint-columns-in-rails-migrations
| |||||||||
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
And all your tables should be created with the intended column type for
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 For those columns, you can refer to the other suggestions, e.g.
UPDATE: @Notinlist, to use arbitrary column for primary key on arbitrary tables you need to do the
e.g. if I wanted
| |||||||||||||
feedback
|
|
According to the Rails API documentation, the possible options for type are:
You can use :decimal, or you can execute a command directly if you need to:
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. | |||||||
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:
You can specify non-primary IDs as custom types in your initial migration like this:
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. | |||||||||||
feedback
|
|
Rails 3, MySQL:
Does not give me a bigint, only an int. However,
works fine. (Although it does tie me to MySQL.) | |||||||
feedback
|