You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/db/migrate/20170215120234_convert_empt...

7 lines
223 B
Ruby

class ConvertEmptyStringThemeToNil < ActiveRecord::Migration
def change
execute "UPDATE users SET theme_name=NULL WHERE theme_name=''"
execute "UPDATE asciicasts SET theme_name=NULL WHERE theme_name=''"
end
end