Sha256: 0945d897fe0400283f21ee12acfedf98ba918c1376c02b046a3721fd1ebd121f

Contents?: true

Size: 276 Bytes

Versions: 7

Compression:

Stored size: 276 Bytes

Contents

class AddSpudUserAndSessionIdToTransactions < ActiveRecord::Migration
  def change
    change_table :tb_checkout_transactions do |t|
      t.integer :spud_user_id
      t.index :spud_user_id
      t.string :session_id, :limit => 32
      t.index :session_id
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
tb_checkout-1.1.1 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
tb_checkout-1.1.0 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
tb_checkout-1.0.7 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
tb_checkout-1.0.6 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
tb_checkout-1.0.5 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
tb_checkout-1.0.4 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb
tb_checkout-1.0.3 db/migrate/20140915202848_add_spud_user_and_session_id_to_transactions.rb