class method
self.schema_format
Ruby on Rails 8.0.4
Since v7.2.3Specifies 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. This can be overridden per-database in the database configuration.
Source
# File activerecord/lib/active_record.rb, line 373
singleton_class.attr_accessor :schema_format
Defined in activerecord/lib/active_record.rb line 373
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord