tispratik / bs

BS
1 stars 0 forks source link

Pratik - Add Indexes to new tables created. #16

Closed TheHumaneClub closed 14 years ago

tispratik commented 14 years ago

added new migration file 99999999999999_add_indexes.rb

class AddIndexes < ActiveRecord::Migration def self.up add_index 'comments', 'parent_id' add_index 'alerts', 'project_id' add_index 'alerts', 'alertable_id' add_index 'timesheets', 'user_id' add_index 'timesheets', 'project_id' add_index 'timesheets', 'objectable_id' add_index 'tags', 'project_id' add_index 'events', 'event_series_id' add_index 'event_series', 'calendar_id' add_index 'event_invitees', 'event_id' add_index 'event_invitees', 'user_id' add_index 'timelogs', 'timesheet_id' add_index 'timelogs', 'project_id' end end

TheHumaneClub commented 14 years ago

cool