Sha256: ff0b71ed60385a04e4854fa5a90e0e314e236e24302277cbaed1ffa43580f305

Contents?: true

Size: 390 Bytes

Versions: 5

Compression:

Stored size: 390 Bytes

Contents

class CreateStripeTaxRates < ActiveRecord::Migration[6.0]
  def change
    create_table :stripe_tax_rates do |t|
      t.string :stripe_id, index: true, null: false
      t.string :display_name
      t.text :description
      t.string :jurisdiction
      t.float :percentage
      t.boolean :inclusive
      t.boolean :active
      t.timestamp :created
      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stripe_model_callbacks-0.1.7 db/migrate/20201223202117_create_stripe_tax_rates.rb
stripe_model_callbacks-0.1.6 db/migrate/20201223202117_create_stripe_tax_rates.rb
stripe_model_callbacks-0.1.5 db/migrate/20201223202117_create_stripe_tax_rates.rb
stripe_model_callbacks-0.1.4 db/migrate/20201223202117_create_stripe_tax_rates.rb
stripe_model_callbacks-0.1.3 db/migrate/20201223202117_create_stripe_tax_rates.rb