asciinema.org/db/migrate/20140630191246_add_theme_to_users.rb

6 lines
110 B
Ruby

class AddThemeToUsers < ActiveRecord::Migration
def change
add_column :users, :theme, :string
end
end