If I need to add 'auto_increment' to a new column called 'another_id' in a table, how can I make it?
Is there an option like:
create_table :posts do |t|
t.integer :another_id, :auto_increment => true # Is there a option like this?
...
t.timestamps
end
In development env I use sqlite3, and mysql in production env;