Class: AddMoreBuildIndexes
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AddMoreBuildIndexes
- Defined in:
- lib/janky/database/migrate/1317384651_add_more_build_indexes.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
8 9 10 11 12 |
# File 'lib/janky/database/migrate/1317384651_add_more_build_indexes.rb', line 8 def self.down remove_index :builds, :started_at remove_index :builds, :completed_at remove_index :builds, :green end |
.up ⇒ Object
2 3 4 5 6 |
# File 'lib/janky/database/migrate/1317384651_add_more_build_indexes.rb', line 2 def self.up add_index :builds, :started_at add_index :builds, :completed_at add_index :builds, :green end |