Files
sure/db/migrate/20250410144939_add_theme_to_users.rb
Josh Pigford 88a6373e84 Implement dark mode (#2078)
* User theme settings

* Initial rough pass on colors

* More progress on dark mode
2025-04-11 09:28:00 -05:00

6 lines
134 B
Ruby

class AddThemeToUsers < ActiveRecord::Migration[7.2]
def change
add_column :users, :theme, :string, default: "system"
end
end