Sha256: 416f4456fa34f66f1978e6a47c963cfd921e75bfedc9536a726187de35feceed

Contents?: true

Size: 430 Bytes

Versions: 16

Compression:

Stored size: 430 Bytes

Contents

class CreateCreditcards < ActiveRecord::Migration
  def self.up
    create_table :creditcards, :force => true do |t|
      t.references :order
	    t.string :number
	    t.string :month
	    t.string :year
	    t.string :verification_value
	    t.string :cc_type
	    t.string :display_number
	    t.string :first_name
	    t.string :last_name
	    t.timestamps
	  end
  end

  def self.down
    drop_table :creditcards
  end
end

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
kdmny-spree-0.0.1 db/migrate/20081208143817_create_creditcards.rb
spree-enriquez-0.9.4 db/migrate/20081208143817_create_creditcards.rb
spree-0.9.4 db/migrate/20081208143817_create_creditcards.rb
spree-0.9.3 db/migrate/20081208143817_create_creditcards.rb
spree-0.9.2 db/migrate/20081208143817_create_creditcards.rb
spree-0.9.1 db/migrate/20081208143817_create_creditcards.rb
spree-0.9.0 db/migrate/20081208143817_create_creditcards.rb
spree-0.8.4 db/migrate/20081208143817_create_creditcards.rb
spree-0.8.5 db/migrate/20081208143817_create_creditcards.rb
spree-0.6.0 db/migrate/20081208143817_create_creditcards.rb
spree-0.7.0 db/migrate/20081208143817_create_creditcards.rb
spree-0.7.1 db/migrate/20081208143817_create_creditcards.rb
spree-0.8.0 db/migrate/20081208143817_create_creditcards.rb
spree-0.8.1 db/migrate/20081208143817_create_creditcards.rb
spree-0.8.2 db/migrate/20081208143817_create_creditcards.rb
spree-0.8.3 db/migrate/20081208143817_create_creditcards.rb