app.kluk.fr/db/migrate/20260226101258_add_guess_to_users.rb
Christophe Robillard 94b6ef89dd
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
guess moods according to user pref
2026-02-26 17:17:39 +01:00

5 lines
132 B
Ruby

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