feat: complete promoter payout system with Stripe Connect onboarding

This commit is contained in:
kbe
2025-09-16 23:53:04 +02:00
parent d922d7304d
commit bc09feafc1
5 changed files with 155 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
class AddIndexToStripeConnectedAccountIdOnUsers < ActiveRecord::Migration[8.0]
def change
add_column :stripe_connected_account_id_on_users, :stripe_connected_account_id, :string
add_index :users, :stripe_connected_account_id, unique: true
add_index :stripe_connected_account_id_on_users, :stripe_connected_account_id
end
end