Skip to content

Commit

Permalink
fix annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-pochet committed Oct 31, 2024
1 parent 2d6c703 commit 270e016
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/models/payment_provider_customers/cashfree_customer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class CashfreeCustomer < BaseCustomer
# Table name: payment_provider_customers
#
# id :uuid not null, primary key
# deleted_at :datetime
# settings :jsonb not null
# type :string not null
# created_at :datetime not null
Expand All @@ -20,7 +21,7 @@ class CashfreeCustomer < BaseCustomer
#
# Indexes
#
# index_payment_provider_customers_on_customer_id_and_type (customer_id,type) UNIQUE
# index_payment_provider_customers_on_customer_id_and_type (customer_id,type) UNIQUE WHERE (deleted_at IS NULL)
# index_payment_provider_customers_on_payment_provider_id (payment_provider_id)
# index_payment_provider_customers_on_provider_customer_id (provider_customer_id)
#
Expand Down
3 changes: 2 additions & 1 deletion app/models/payment_providers/cashfree_provider.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class CashfreeProvider < BaseProvider
#
# id :uuid not null, primary key
# code :string not null
# deleted_at :datetime
# name :string not null
# secrets :string
# settings :jsonb not null
Expand All @@ -30,7 +31,7 @@ class CashfreeProvider < BaseProvider
#
# Indexes
#
# index_payment_providers_on_code_and_organization_id (code,organization_id) UNIQUE
# index_payment_providers_on_code_and_organization_id (code,organization_id) UNIQUE WHERE (deleted_at IS NULL)
# index_payment_providers_on_organization_id (organization_id)
#
# Foreign Keys
Expand Down

0 comments on commit 270e016

Please sign in to comment.