Reputation: 4259
The columns in my table are currently "text", I need to change them to "text collate nocase". How would I go about doing this without losing data?
Upvotes: 1
Views: 557
Reputation: 73021
Just run an ALTER TABLE
command on the column. You should not lose data, but test first.
Check out the docs for the exact syntax;
Upvotes: 3