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.
|
|
Your Postgres code does not work, it's impossible to use serial or bigserial in an ALTER TABLE statement. Correct SQL for PostgreSQL is
|
||
|
|
|
|
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. |
||
|
|
|
Try:
or
Certain Rails database adapters may not let you call MySQL:
PostgreSQL:
MySQL using a
PostgreSQL using a
Cheers, V. |
||||
|
