class method
self.schema_format
Ruby on Rails 3.0.20
Since v2.3.18 Last seen in v3.2.22.5Specifies the format to use when dumping the database schema with Rails’ Rakefile. If :sql, the schema is dumped as (potentially database- specific) SQL statements. If :ruby, the schema is dumped as an ActiveRecord::Schema file which can be loaded into any database that supports migrations. Use :ruby if you want to have different database adapters for, e.g., your development and test environments.
Source
# File activerecord/lib/active_record/base.rb, line 419
cattr_accessor :schema_format , :instance_writer => false
Defined in activerecord/lib/active_record/base.rb line 419
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base