File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed
activerecord/lib/active_record Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ def initialize
485
485
# them to the console as they happen, along with benchmarks describing how
486
486
# long each step took.
487
487
#
488
- # You can quiet them down by setting ActiveRecord::Migration.verbose = false.
488
+ # You can quiet them down by setting <tt> ActiveRecord::Migration.verbose = false</tt> .
489
489
#
490
490
# You can also insert your own messages and benchmarks by using the +say_with_time+
491
491
# method:
@@ -791,6 +791,25 @@ def disable_ddl_transaction # :nodoc:
791
791
self . class . disable_ddl_transaction
792
792
end
793
793
794
+ ##
795
+ # :singleton-method: verbose
796
+ #
797
+ # By default, migrations will describe the actions they are taking, writing
798
+ # them to the console as they happen, along with benchmarks describing how
799
+ # long each step took.
800
+ #
801
+ # You read that setting through <tt>ActiveRecord::Migration.verbose</tt>.
802
+
803
+ ##
804
+ # :singleton-method: verbose=
805
+ #
806
+ # :call-seq: verbose=(value)
807
+ #
808
+ # By default, migrations will describe the actions they are taking, writing
809
+ # them to the console as they happen, along with benchmarks describing how
810
+ # long each step took.
811
+ #
812
+ # You can quiet them down by setting <tt>ActiveRecord::Migration.verbose = false</tt>.
794
813
cattr_accessor :verbose
795
814
attr_accessor :name , :version
796
815
You can’t perform that action at this time.
0 commit comments