Sha256: e6060e3f27ae3a05804e33189dc2cb5a87c029973ec9ffb7b106447c06485f62

Contents?: true

Size: 334 Bytes

Versions: 5

Compression:

Stored size: 334 Bytes

Contents

class CreateSubscriptions < ActiveRecord::Migration[5.1]
  def change
    create_table :subscriptions do |t|
      t.string :stripe_id
      t.integer :plan_id
      t.string :last_four
      t.string :last_four
      t.string :card_type
      t.float :current_price
      t.integer :customer_id

      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tellimus-0.1.2 spec/dummy/db/migrate/20130318204455_create_subscriptions.rb
tellimus-0.1.1 spec/dummy/db/migrate/20130318204455_create_subscriptions.rb
tellimus-0.1.0 spec/dummy/db/migrate/20130318204455_create_subscriptions.rb
tellimus-0.0.4 spec/dummy/db/migrate/20130318204455_create_subscriptions.rb
tellimus-0.0.3 spec/dummy/db/migrate/20130318204455_create_subscriptions.rb