VIEW MORE ARTICLES
Rinas Writes
January 25, 2024
TIL in Rails: How to change column defaults with :from and :to option for making it a reversible migration
I was trying to change a column default
def change change_column_default :blog, :language, "en_US" end
and it gave this error when I try to rollback the migration
Caused by: ActiveRecord::IrreversibleMigration: change_column_default is only reversible if given a :from and :to optio
Learned that we can pass :from and :to option there.
SOLUTION:
SOLUTION:
def change change_column_default :blog, :language, from: "en", to: "en_US" end
Recent writings
TIL: How to create new session in tmux and use ...
To create a new session in tmux tmux new -s sessionname Detach from the session crtl + b and then...
March 12, 2025
My remote work schedule
I have been working remotely for more than 5 years now. My work schedule had changed throughout ...
March 04, 2025
2025 is the year I'm going minimalist.
Sorry that's all I can share. (being a minimalist, you know... get it?) Joke aside, I have been...
January 17, 2025
Hello 2025, give me these:
Personal Health is my #1 priority this year, both mental and physical: • Go out for a walk and ...
January 07, 2025