Adding payment index

This commit is contained in:
Will Bradley 2014-11-20 13:13:38 -07:00
parent d1c5dba667
commit c976a6c216
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,6 @@
class AddIndexesToPayments < ActiveRecord::Migration
def change
add_index :payments, :date
add_index :payments, :amount
end
end

View File

@ -11,7 +11,7 @@
# #
# It's strongly recommended to check this file into your version control system. # It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20141120194112) do ActiveRecord::Schema.define(:version => 20141120200638) do
create_table "cards", :force => true do |t| create_table "cards", :force => true do |t|
t.string "card_number" t.string "card_number"
@ -108,6 +108,8 @@ ActiveRecord::Schema.define(:version => 20141120194112) do
t.decimal "amount" t.decimal "amount"
end end
add_index "payments", ["amount"], :name => "index_payments_on_amount"
add_index "payments", ["date"], :name => "index_payments_on_date"
add_index "payments", ["user_id"], :name => "index_payments_on_user_id" add_index "payments", ["user_id"], :name => "index_payments_on_user_id"
create_table "paypal_csvs", :force => true do |t| create_table "paypal_csvs", :force => true do |t|