Sha256: 40855c78e852d5649b7a726fc6a372325506d5675a6a4427ef8812fb1e039299

Contents?: true

Size: 402 Bytes

Versions: 141

Compression:

Stored size: 402 Bytes

Contents

class CreateIntegrationsStripeInstallations < ActiveRecord::Migration[6.1]
  def change
    create_table :integrations_stripe_installations do |t|
      t.references :team, null: false, foreign_key: true
      t.references :oauth_stripe_account, null: false, foreign_key: true, index: {name: "index_stripe_installations_on_stripe_account_id"}
      t.string :name

      t.timestamps
    end
  end
end

Version data entries

141 entries across 141 versions & 1 rubygems

Version Path
bullet_train-integrations-stripe-1.0.0 db/migrate/20210316215919_create_integrations_stripe_installations.rb