app.kluk.fr/db/migrate/20260219114040_add_public_to_users.rb
Christophe Robillard 858c535c3c add public to users
2026-02-20 10:27:10 +01:00

5 lines
134 B
Ruby

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