theseus/db/migrate/20251218193911_add_can_use_indicia_to_users.rb
24c02 417c1f0e8f Add migrations for HCB payment integration
- Add can_use_indicia boolean to users table
- Create hcb_oauth_connections table for storing OAuth tokens
- Create hcb_payment_accounts table for user/org pairs
2025-12-18 14:40:06 -05:00

5 lines
163 B
Ruby

class AddCanUseIndiciaToUsers < ActiveRecord::Migration[8.0]
def change
add_column :users, :can_use_indicia, :boolean, default: false, null: false
end
end