class TableDefinition
Ruby on Rails 3.0.20
Represents the schema of an SQL table in an abstract way. This class provides methods for manipulating the schema representation.
Inside migration files, the t object in create_table and change_table is actually of this type:
class SomeMigration < ActiveRecord::Migration
def self.up
create_table :foo do |t|
puts t.class # => "ActiveRecord::ConnectionAdapters::TableDefinition"
end
end
def self.down
...
end
end
The table definitions The Columns are stored as a ColumnDefinition in the columns attribute.
Inherits from
Attributes
Methods (defined here)
- # []
- # belongs_to
- # column
- # method_missing
- # primary_key
- # references
- # timestamps
- # to_sql
- # xml
- # xml_column_fallback
- self. new
Private methods (1)
Show private methods Implementation detail — not part of the public API.
- # native
Methods (inherited)
From Object
(26)
- # acts_like?
- # app
- # blank?
- # controller
- # create
- # create_fixtures
- # destroy
- # duplicable?
- # edit
- # helper
- # html_safe?
- # index
- # instance_variable_names
- # new
- # new_session
- # presence
- # present?
- # reload!
- # returning
- # show
- # to_param
- # to_query
- # try
- # unescape
- # update
- # with_options
From Benchmark
(1)
- self. ms