mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
7 lines
175 B
Ruby
7 lines
175 B
Ruby
class AddThemeToUsers < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :users, :theme, :string, default: "light", null: false
|
|
add_index :users, :theme
|
|
end
|
|
end
|