vote up 3 vote down star

Hi ,By mistake I have removed the autoincrement option from id field of my table.Can any one tell me ,how can i reinsert the option of autoincrement in table through migration.

flag

3 Answers

vote up 0 vote down

Your Postgres code does not work, it's impossible to use serial or bigserial in an ALTER TABLE statement. Correct SQL for PostgreSQL is

ALTER TABLE table ALTER COLUMN id TYPE int 
ALTER TABLE table ALTER COLUMN id TYPE bigint
link|flag
vote up 0 vote down

Hi I have implemented yor solution but i want the data type of the id field as Bigint, So it is not allowing me to do both operations ,which are making id a primary key and assigning it a datatype.

link|flag
Please comment on my post or else I won't notice your reply. See the update again, you have to use execute - is this what you want? – Vlad Romascanu Mar 5 at 23:05
vote up 2 vote down

Try:

change_column :table, :id, :primary_key

or

t.change_column :id, :primary_key

Certain Rails database adapters may not let you call change_column on the primary key. If that is the case then you can always call execute to perform the change using SQL directly:

MySQL:

execute "ALTER TABLE table CHANGE id id
  int(11) DEFAULT NULL auto_increment PRIMARY KEY"

PostgreSQL:

execute "ALTER TABLE table ALTER COLUMN id
  TYPE serial primary key"


MySQL using a bigint PK instead of the default int(11):

execute "ALTER TABLE table CHANGE id id
  bigint DEFAULT NULL auto_increment PRIMARY KEY"

PostgreSQL using a bigserial PK instead of the default serial:

execute "ALTER TABLE table ALTER COLUMN id
  TYPE bigserial primary key"

Cheers, V.

link|flag
Thnx for yor response,But i have actually already done change_column on some of the primary keys.May be thats why it removed the already existing Auto Increment option from the primary key option. – Somesh Mar 5 at 15:41
No problem. See my update. – Vlad Romascanu Mar 5 at 15:43

Your Answer

Get an OpenID
or

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