diaspora/db/migrate/20110603233202_drop_aspects_open.rb
Steven Hancock a8de3a5a3f Rails.root and File.join cleanup
- `Rails.root` is a `Pathname`, so let's use `Rails.root.join`
- Clean up most of the remaining `File.join`s
2012-06-11 03:13:20 -07:00

10 lines
226 B
Ruby

class DropAspectsOpen < ActiveRecord::Migration
require Rails.root.join("db", "migrate", "20110202015222_add_open_to_aspects")
def self.up
AddOpenToAspects.down
end
def self.down
AddOpenToAspects.up
end
end