vote up 3 vote down star

If I'm adding a column via MySQL, I can specify where in the table that column will be using the AFTER modifier. But if I do the add_column via a Rails migration, the column will be created at the end of the table.

Is there any functionality for rails migrations to specify the position of an added column?

flag

73% accept rate

4 Answers

vote up 2 vote down check

There does not seem to be a position option for the add_column method in migrations. But migrations support executing literal SQL. I'm no Rails developer, but something like the following:

class AddColumnAfterOtherColumn < ActiveRecord::Migration
  def self.up
    execute "ALTER TABLE table_name ADD COLUMN column_name INTEGER 
      AFTER other_column"
  end

  def self.down
    remove_column :table_name, :column_name
  end
end
link|flag
vote up 3 vote down

I do not think there is now but more to the point, why do you need to specify the exact place?

link|flag
I thought the same thing but assumed the OP wants to iterate over columns in the result set, and have them come out in a predictable order. – Bill Karwin Dec 16 '08 at 16:49
You can specify the order of columns in a SQL query (not when using SELECT * of course) by giving the columns explicitely. – Keltia Dec 16 '08 at 21:27
Yes but when using an ORM layer, we seldom have the opportunity to specify columns. Rails' ActiveRecord is well-known for fetching all columns. This is a performance hit when it fetches large BLOBs that are not needed, for example. – Bill Karwin Dec 24 '08 at 21:18
vote up 1 vote down

There is no way within Rails to specify the position of a column. In fact, I think it's only coincidental (and therefore not to be relied on) that columns are created in the order they are named in a migration.

The order of columns within a table is almost relevant and should be so: the common "reason" given is to be able to see a particular subset when executing a "SELECT *", but that's really not a good reason.

Any other reason is probably a design smell, but I'd love to know a valid reason why I'm wrong!

On some platforms, there is a (miniscule) space and performance saving to be obtained by putting the columns with the highest probability of being NULL to the end (because the DMBS will not use any disk space for "trailing" NULL values, but I think you'd have to be running on 1980's hardware to notice.

link|flag
It's not coincidental, it's standard SQL behavior that ALTER TABLE ADD COLUMN adds the column as the last ordinal position in the table. MySQL's "AFTER" syntax is an extension to standard SQL. – Bill Karwin Dec 17 '08 at 16:30
ANSI standard? Or de facto? Not quibbling, just curious. – Mike Woodhouse Dec 18 '08 at 9:39
I'm going by the book "SQL-99 Complete, Really" which describes it as ANSI standard behavior that additional columns are added as the rightmost column in a table. – Bill Karwin Dec 24 '08 at 21:16
vote up 1 vote down

I created a patch that adds this additional functionality to the ActiveRecord Mysql adapter. It works for master and 2-3-stable.

https://rails.lighthouseapp.com/projects/8994/tickets/3286-patch-add-support-for-mysql-column-positioning-to-migrations

It might be mysql specific, but it doesn't make your migrations any less portable (other adapters would just ignore the extra positioning options).

link|flag

Your Answer

Get an OpenID
or

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