aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2011-11-07 11:56:50 +0900
committerAkira Matsuda <ronnie@dio.jp>2011-11-07 11:56:50 +0900
commit55b203dac1eb4b3430b313112b8d5a53b1016b4e (patch)
tree83c7fe3db6766055d812c48ed325af959d97d4c7 /activerecord/lib/active_record/base.rb
parent759906d51272534941843fc80ae9f579b28c336c (diff)
downloadrails-55b203dac1eb4b3430b313112b8d5a53b1016b4e.tar.gz
rails-55b203dac1eb4b3430b313112b8d5a53b1016b4e.tar.bz2
rails-55b203dac1eb4b3430b313112b8d5a53b1016b4e.zip
self.up, self.down => up, down
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rw-r--r--activerecord/lib/active_record/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index feeebb7131..3558ae3545 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -760,7 +760,7 @@ module ActiveRecord #:nodoc:
# values, eg:
#
# class CreateJobLevels < ActiveRecord::Migration
- # def self.up
+ # def up
# create_table :job_levels do |t|
# t.integer :id
# t.string :name
@@ -774,7 +774,7 @@ module ActiveRecord #:nodoc:
# end
# end
#
- # def self.down
+ # def down
# drop_table :job_levels
# end
# end