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