Re: Why doesn't add_column :field, :boolean, index: true create an index?

2022-04-20 Thread aryk....@gmail.com
Sorry for the late reply here Jeremy. Thanks again for looking into this. I had to go back and add like like 100 indexes on my foreign keys on my 2 year old project lol. Aryk On Sunday, March 27, 2022 at 4:17:33 PM UTC-7 Jeremy Evans wrote: > On Sun, Mar 27, 2022 at 3:34 PM

Re: Why doesn't add_column :field, :boolean, index: true create an index?

2022-03-27 Thread Jeremy Evans
On Sun, Mar 27, 2022 at 3:34 PM aryk@gmail.com wrote: > When I create a new table I can put: > > create_table :foo do > column :bar, TrueClass, index: true > end > > and it creates an index, but "index: true" doesn't work with add_column > and instead doesn't throw any error, so you think