annotate db/migrate/20130512032335_add_index_to_pastes_secret.rb @ 333:682abad78313

Documentation and line length.
author edogawaconan <me@myconan.net>
date Mon, 14 Apr 2014 17:32:12 +0900
parents 0f9f29274663
children 4608d12ebe03
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
333
682abad78313 Documentation and line length.
edogawaconan <me@myconan.net>
parents: 221
diff changeset
1 # Speed up lookup.
221
0f9f29274663 Add index to pastes.secret
Edho Arief <edho@myconan.net>
parents:
diff changeset
2 class AddIndexToPastesSecret < ActiveRecord::Migration
0f9f29274663 Add index to pastes.secret
Edho Arief <edho@myconan.net>
parents:
diff changeset
3 def change
0f9f29274663 Add index to pastes.secret
Edho Arief <edho@myconan.net>
parents:
diff changeset
4 add_index :pastes, :secret
0f9f29274663 Add index to pastes.secret
Edho Arief <edho@myconan.net>
parents:
diff changeset
5 end
0f9f29274663 Add index to pastes.secret
Edho Arief <edho@myconan.net>
parents:
diff changeset
6 end