app.kluk.fr/db/migrate/20260226101258_add_guess_to_users.rb
Christophe Robillard 939668c4fb
Some checks failed
CI / lint (push) Has been cancelled
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / test (push) Has been cancelled
guess moods according to user pref
2026-02-27 15:51:21 +01:00

5 lines
132 B
Ruby

class AddGuessToUsers < ActiveRecord::Migration[8.0]
def change
add_column :users, :guess, :boolean, default: false
end
end